$(document).ready(function(){ 
	$('#order').change(function(){
		if($(this).val() != ''){
			$('#order-by').submit();
		}
	});
});
