The form is HTML, but I am assuming that I need to accomplish this with Javascript. Sample HTML code follows for the select field and the following text field.
Expand|Select|Wrap|Line Numbers
- <td>Location:<br><select name="room_descr" size="1">
- <option value="">Select a Location</option>
- <option value="Patient Room">Patient Room</option>
- <option value="Therapy Gym">Therapy Gym</option>
- <option value="Cafeteria">Cafeteria</option>
- <option value="Hospital Grounds">Hospital Grounds</option>
- <option value="Hospital Contractor Site">Hospital Contractor Site</option>
- <option value="Other">Other</option>
- </select></td>
- <td>Other:<br><INPUT TYPE=TEXT NAME="oth_descr" SIZE=32 MAXLENGTH=25></td>
Thanks,
jej1216