$(function() {
	$('#category').change(function() {
		var $el = $(this);
		var pre = $(this).attr('name');
		if ($el.val() != '-') {
			window.location.href = pre + $el.val();
		}
	});
});
