$(function() {
	$('#country').change(function() {
		var data = 'country=' + $(this).val();
		if ($(this).val() == 'United States') {
			$('#state').show();
			data += '&state=' + $('#state').val();
		} else {
			$('#state').hide();
		}
		
		$.ajax({
			url: '/stores/locations',
			data: data,
			dataType: 'script',
			type: 'post',
			success: function(request) {
				$('#locations').html(request);
			}
		});
	});

	$('#state').change(function() {
		$.ajax({
			url: '/stores/locations',
			data: 'country=' + $('#country').val() + '&state=' + $(this).val(),
			dataType: 'script',
			type: 'post',
			success: function(request) {
				$('#locations').html(request);
			}
		});
	});
	
	$('#country').change();
});
