ciao, è possibile con il javascript fare in modo che quando l'operatore clicca nel radio "cliente" "si" automaticamente cambia anche il valore della select "esito" in "appuntamento"?
Codice PHP:
<span class="testo_grigio_bold">
<input type="radio" name="cliente" value="si" <? if ($row['cliente']==si) { echo "CHECKED"; } ?>>si
<input type="radio" name="cliente" value="no" <? if ($row['cliente']==no) { echo "CHECKED"; } ?>>no
</span>
<select name="esito">
<OPTION VALUE="altro" <? if ($row['esito']=="altro") { echo "SELECTED"; } ?>>altro specificare</OPTION>
<OPTION VALUE="non interessata" <? if ($row['esito']=="non interessata") { echo "SELECTED"; } ?>>non interessata</OPTION>
<OPTION VALUE="fissare appuntamento" <? if ($row['esito']=="fissare appuntamento") { echo "SELECTED"; } ?>>fissare appuntamento</OPTION>
<OPTION VALUE="richiamare" <? if ($row['esito']=="richiamare") { echo "SELECTED"; } ?>>richiamare</OPTION>
<OPTION VALUE="appuntamento" <? if ($row['esito']=="appuntamento") { echo "SELECTED"; } ?>>appuntamento</OPTION>
</select>