$(function(){
	$("form.serch select").change(function() {
		if ( $(this).val() == "" ) return;
		document.location.href = "/case/"+$(this).val()+"/";
	});
});