$(function(){
	var lastAjaxRequestId;
	$("#right_sell select[name='brand_id']").change(function(){
		var localAjaxRequestId=Math.random();// чтобы гарнатировать что действие изменения будет только для последнего ответа аякс а не для каждого
		lastAjaxRequestId=localAjaxRequestId;
		$.get("/?m=sale&do=models&brand_id=" + $("option:selected", this).attr("value")+"&enum", function(data){
			if (localAjaxRequestId!=lastAjaxRequestId)
				return;
	  		$("#right_sell select[name='model_id']").hide().before(data).remove();
		});
	});

	var lastAjaxRequestId2;
	$("#right_sell select[name='country_id']").change(function(){
		var localAjaxRequestId = Math.random();
		lastAjaxRequestId2      = localAjaxRequestId;
		$.get("/?m=main&do=cities&country_id=" + $("option:selected", this).attr("value")+"&enum", function(data){
			if (localAjaxRequestId != lastAjaxRequestId2)
				return;
	  		$("#right_sell select[name=city_id]").before(data).remove();
		});
	});
	
	$("#searchAuto").bind("submit", function(){
		$("input", this).each(function(){
			var el = $(this);
			if (el.attr("value")==""){
				el.attr("disabled","disabled");
			}
		});
		$("select", this).each(function(){
			var el = $(this);
			if ($("option:selected", this).attr("value")==""){
				el.attr("disabled","disabled");
			}
		});
		return true;
	});
});

