
// wait until page loads
$(document).ready(function() {
	// preps the drop down for city selection
	$("#whichCity").change(function() {
	  document.location = this.value;
	});
});
