$(document).ready(function(){
	$("#select").change(function(){
		if($(this).find("option:selected").val() != ""){
			location.href = $(this).find("option:selected").val();
		}
		return false;
	});
});