$(document).ready(
	function() {

	$("#store_locator select").change(
		function() {
			window.location.href = $("#store_locator select").val();
		}
	);

	}
);