$(document).ready(function(){
	$("div#a_spot select").change(function(){
		if($(this).attr("value")) {
			location.href = $(this).attr("value");
		}
	});
});