/**
 * Initializes select.
 */
function InitSelect( select, surface )
{
    surface.html( select.find( "option:selected" ).html() );
    select.change(function(){
        surface.html( select.find( "option:selected" ).html() );
    });
}
