$(document).ready(function() {
	$("#select_location select").change(function(){
		var url = $(this).val();
		window.location = url;
	});	
});

