function search_order_by(search_url) {
	var sel = document.getElementById("sort-by");
	var value = sel.options[sel.selectedIndex].value


	if(value > 0) {
		window.location.href = search_url + '&order_by=' + value;
		return true;
	}
}
