<script language="javascript">
function check(){
//leggo i valori delle select
var sel1=document.getElementById('sel1').value;
var sel2=document.getElementById('sel2').value;
var sel3=document.getElementById('sel3').value;

//qando ho tutti e tre i valori associo al pulsante una funzione
if (sel1!="" && sel2!="" && sel3!=""){
document.getElementById('graphicbutton').onclick=f unction(){
location.href=sel1+sel2+sel3+".html"
}
}
}
</script>


<select id="sel1" onchange="check()">
<option value="">Selezionare</option>
...
</select>

<select id="sel2" onchange="check()">
<option value="">Selezionare</option>
...
</select>

<select id="sel3" onchange="check()">
<option value="">Selezionare</option>
...
</select>


<input type="button" value="Pulsate grafico" id="graphicbutton" />