I am attempting to create a mail form where several inputs will change depending on the user's selection on an initial drop box. I've been trying to use the OnFocus= command but I am not familiar with java.
<SELECT name="contactStyle">
<OPTION value="email">E-Mail</OPTION>
<OPTION value="telephone">Telephone</OPTION>
</SELECT>
When a user selects either option, I want to have another <TEXTAREA> become visible. How can this be done without reloading the page?