$(document).ready(function() {
	$("#selsort").change(function(){
		 window.location.href = $('#selsort option:selected').val();
	});
	$("#selcat").change(function(){
		 window.location.href = $('#selcat option:selected').val();
	});
});

