$(document).ready(function(){
	
	$('#territory').change(function(){
		var territory = $(this).val();
		if( territory != '' ){
			$.ajax({
				type: "POST",
				url: "/ajax/salon-locator_sa_get_towns.php",
				data: "territory=" + territory,
				success: function(msg){
					if( msg.match(/\"error\"/) ){
						$('#territory').parent('p').after(msg);
					} else {
						$('#town').html(msg).parent('p').fadeIn('fast').next('p').fadeIn('fast');
					}
				},
				error: function(msg) {
					$('#territory').parent('p').after(msg);
				}
			});
		} else {
			$('#town').parent('p').fadeOut().next('p').fadeOut();	
		}
	});
	
	$('#submit').click(function(){
		if( $('#territory').val() == '' ){
			$('#territory').after('&nbsp;<span style="color:red;">Please select a territory</span>');
			return false;
		}
	});
});