$(function ()
{
	$('#listrows').change(function ()
	{
		if ($(this).val() == '') return false;
		
		var url = window.location.href.replace(/&listrows=[0-9]*/, '');
		window.location.href = url + '&listrows=' + $(this).val();
	});
});
