function updateModel() {
     
  // load new options

   ajaxUrl = "updateModel.php?make="+escape($('#make').val());
    
   $.get(ajaxUrl, function(html){
	  $('#model').html( html );
  });

}
