function get_models(brand)
{
	$("#models").hide();
	$("#models_loading").show();

	$.post("index.php?module=xmlhttp", { 
		request:"xmlhttp"
		, action:"models"
		, brand:brand
	 },
	  function(data)
	  {
		$("#models").html(data);
		$("#models_loading").hide();
		$("#models").show();
	  });
}
