

 $(document).ready(function(){
 
 if ($("#show_category")) {
	 $("#show_category").change(function() {
	 	obj = document.getElementById($(this).attr("id"));
	 	document.location.href=obj.options[obj.selectedIndex].value;
	 });
 }
 
 
 });