jQuery(function(){
	jQuery('#indexcat').change(function () {
			  var str = "";
			  jQuery("select option:selected").each(function () {
					str += jQuery(this).attr('name') + " ";
				  });
			  document.location.href=str;
			});
});

