window.onload = init;

function init() {
	$("select").bind("change", handleOptionChange);	
}

function handleOptionChange() {
	var where = $("option:selected").val();
	window.location = redir_loc+where;
}
