$(function()
{
	$('select#country').selectmenu({style:'dropdown'});		
	$('select#city').selectmenu({style:'dropdown'});

	$("#country").change(function()
	{
		if($('#country').val() == 'Select Country')
		{
		$("#country_error").show();
		return false;
		}
		else
		{
		$("#country_error").hide();
		$("#form_error").hide();
		$.ajax({
		type: "POST",
		url:"/ajax/ajaxsearch",
		data: "country="+$('#country').val(),
		success: function(html){$("#city").replaceWith(html);}
		});
		}
	});


	$('#myForm').submit(function() {
		if($('#city').val() == 'Select City'||$('#country').val() == 'Select Country')
		{
		$("#form_error").show();
		return false;
		}	
	});
});

