$(document).ready(function () {

   var updatePrice = function (){
      $('#customModels').load("./get_models.cfm", 
         {
          
            themodel: $('#themodel').val(), 
            id: $('#MAKES').val()
         }, function () {
   	      $('#customModels').show("slow");
         }
      );
   }

   $("#MAKES").change(updatePrice).change();


});


