$(document).ready(function() {
	// geo city
	var opt = {
		target: "#local",
		beforeSerialize: showLoader,
		success: hideLoader
	};
	$("#reg").chosen();
	$(".chzn-results li:odd").css("background-color", "#EFB71D");
	$(".chzn-results li:last").css({"font-size":"10px"});
	$("#reg").bind("change", function () {	
    	$("#freg").ajaxSubmit(opt);
		$(".chzn-single span").text("Другие регионы..");
    });
	function showLoader() {
		$('#local').hide();
		$(".loader").fadeIn(40);
		return true;
	}
	function hideLoader() {
		$('#local').delay(150).fadeIn(400, function(){
			$(".loader").delay(100).fadeOut(350);
		});
		return true;
	}
});
