$(function() {
	//hide go button if JS is on
	$("#otherCats [type=submit]").addClass("hidden");
	//jump to page on select menu change
	$("#otherCats select").change(function()
	{
		if($("#otherCats select option:selected").val() != "")
		{$("#otherCats").submit();}
	}	
	);
});
