$(document).ready(function() {
	if ($('#country').length > 0) {
		$('#country').blur(function() {
			if ($('#country').val().length > 1) {
			$.ajax({
				type:		'GET',
				url:		'world.cfc',
				data:		'method=getStates&country=' + $('#country').val(),
				success:	function(html) { 
								$('#state').html(html);
				}
			});
			return true;
		}
		else { return false; }
		});
	}
});
