function mostraCategorias (div,valor){    

    if (valor == "1"){
        document.getElementById(div).style.display = "block";
    }else{
        document.getElementById(div).style.display = "none";
    }

}
