Event.observe(window, 'load', function(){
	/**
	* CARREGA EVENTOS
	*/
	$('sltCategoria').observe('change', function(e){
		goCategoria();
	});
	
}, false);

function goCategoria() {
	var categoriaSelecionada = $('sltCategoria').options[$('sltCategoria').selectedIndex].value;
	location.href= categoriaSelecionada;
}
