//versione che usa mootools
function chcomuni(provincia) {
    var req = new Request({
        url: 'inc.chcomuni.php',
        method: 'get',
        onSuccess: function(responseText, responseXML) {
            $('comune').set('html', responseText);

        }
    });
    req.send('prov=' + provincia);
}

//versione che usa mootools
function srcprov(id) {
    $('provincia').set('value',id);
    document.forms["0"].submit();
}

//versione che usa jquery
function chcomuni2(provincia) {
    $.get("inc.chcomuni.php", {
        prov: provincia
    },
    function(data){
        $("#comune").html(data);
    })
}

//versione che usa jquery
function srcprov2(id) {
    $("#provincia").val(id);
    document.forms["0"].submit();
}

function page(p) {
    document.getElementById("chpage").value = "si";
    document.getElementById("p").value = p;
    document.getElementById("frmric").submit();
}
