
function ajaxModels(id) {
	
	var val = $('#'+id).val();
	
	$.ajax({
		  url: "http://www.escar.sk/admin/modules/custom_modules/cars_management/ajax_get_models.php",
		  cache: false,
		  type: "GET",
	      data: ({
	    	  		brand 	: val	    	  		
	    		  }),
		  success: function(html){		
						
			$('#smid').hide().html(html).fadeIn('slow');
		//alert(html);
			
		  }
		});		
	
}

function getBrands(id) {
	
	var val = $('#'+id).val();
	
	$.ajax({
		  url: "http://www.escar.sk/ajax/get_brands.php",
		  cache: false,
		  type: "GET",
	      data: ({
	    	  		brand 	: val	    	  		
	    		  }),
		  success: function(html){		
			
			$('#model_select').hide().html(html).fadeIn('slow');
			
		  }
		});		
	
}



jQuery(document).ready(function($) {
	  $('a[rel*=facebox]').facebox()
}) 
