$(document).ready(function(){
	$("select").change(function(){
		window.location = $("select").val(); 
	});
});
