$(document).ready(function()
{
	// o select das categorias
	$('#sel_categorias').change(function(){
		if ($(this).val() != '0')
		{
			document.location.href = $(this).val();
		}
	});
});