// pour les menus deroulants
function choixzone(nomform) {
    var lien = nomform.nomselect.options[nomform.nomselect.selectedIndex].value;
    if (lien != 0){
        location.href = lien;
    }
}

