$(document).ready(function () {

	$("select[name=region]").change(function() {
		if($("select[name=region]").val() != undefined)
		{
			$.post("/admin/inc/getCities.php", { r: $("select[name=region]").val(), pt: $("input[name=pt]").val() }, function(data) {
				if(data!='')
				{
					$("select[name=city]").html('<option>All</option>' + data);
					$("select[name=city]").attr("disabled", false);
				}
			});
		}
	}).change();

});