jQuery(function($) {
	
	$selectCat = $('#selectCat');
	
	$selectCat.change(function() {
		//top.location=$('#baseUrl').val()+'/category/index/cat/'+$('#selectCat').val();
		location = $selectCat.val();
	});
});

