function CambiarTema(lista) {
    var id_tema = lista.options[lista.selectedIndex].value;
    //        alert(id_tema);
    if (id_tema == -2) {
        alert('seleccione un tema');
        //            lista.focus();
        return false;
    }

    return true;
}
