$(document).ready(function () {

  var updatePrice = function (){
	 
	  if ($(this).attr("value")=="3") {
	   $('#customselect').hide();
	 
	  }else
	  {
		 
	 
        $('#customModels').load("/aaatest.cfm",{id: $('#wsid').val()}, function () {
   	       $('#customselect').show(); 
		   $('#customModels').show();
		   		if (jQuery.browser.safari === true) {
			console.log("true");
			$("#quick-search select").css('background','').addClass('safari_select');
			$("#quick-search select option").css('background','').addClass('safari_select_option');
		}
           }
         );
	  
	  
	  };
	  
	  
   }

   $("#wsid").change(updatePrice).change();


});



