Hi all.
I have this form:
Expand|Select|Wrap|Line Numbers
- <select size="1" name="FRG_FNC">
- <option value="">Select value</option>
- <option value="FRC">FRG</option>
- <option value="FNC">FNC</option>
- <option value="No">No</option>
- </select>
- <select size="1" name="core" onchange="var cc = this.options[this.selectedIndex].value; if(cc=='No')Forum();">
- <option value="">Select value</option>
- <option value="Yes">Yes</option>
- <option value="No">No</option>
- </select>
- <input type="text" name="code" size="10" readonly value="-"></p>
1) if value = No in the select name="FRG_FNC" disabled the select name="core" and the input type="text" name="code"
2) if value = No in the select name="FRG_FNC" assign a default value in the select name="FRG_FNC" and the input type="text" name="code"
Can you help me?