function select_options()
{
    res = '';
    for (i=1 ; i<100 ; i++)
    {
        sel = document.getElementById("opzione_" + i);

        if (!sel)
            break;

        res += sel[ sel.selectedIndex ].value + "_SEP_";
    }

    res = res.replace(/_SEP_$/,'');

    document.getElementById('acquista').href = document.getElementById('acquista').href.replace(/\/opzione-(.*)-id/,'/opzione-'+res+'-id');
}