/*customSelect=Class.create({id:null,initialize:function(id){this.id=$(id);this.id.addClassName('styled');this.id.insert({before:'<span id="'+id+'_front" class="select">'+this.id.options[this.id.selectedIndex].text+'</span>'});this.id.observe('change',this.onchange.bindAsEventListener(this));},onchange:function(){if(this.id.options[this.id.selectedIndex].text.length > 17){$(this.id.id+'_front').update(this.id.options[this.id.selectedIndex].text.substr(0,17) + '...');}else{$(this.id.id+'_front').update(this.id.options[this.id.selectedIndex].text);}}});document.observe("dom:loaded",function(){new customSelect('search_salecharter');new customSelect('search_type');new customSelect('search_size');new customSelect('search_guests');new customSelect('search_price');new customSelect('search_name');});*/