$(document).ready(function() {
	$('#citySelectButton').click(function() {
		var target = $('#city_select_list :selected').val();
		if (target) {
			window.location = target;
		} else {
			alert("Please choose a category from the drop-down list to continue");
		}
		return false;
	});
	$('#city_select_list').change(function() {
		$('#citySelectButton').click();
	});
});

