$(document).ready(function(){
	$('select.select_search').change(function(){
		var url = $(this).children("option:selected").val();
		if(url != undefined && url != '') location.href = url;
	});
});