Hi all,
I need to have a drop-down box with realtor names in it and a text box in case the realtor's name isn't in the drop down box. When I tried the following code. The value of realtor is always empty because the text box is empty and seems to reset the value. Is there a way around this? See code below.
<select name="realtor">
<option value="Joan Brown">Joan Brown</option>
<option value="Marshall Payne">Marshall Payne</option>
<option value="Virginia Jackson">Virginia Jackson</option>
<option value="Ann Rawls">Ann Rawls</option>
<option value="Melanie Painter">Melanie Painter</option>
<option value="Daylon Martin">Daylon Martin</option>
</select>
OR
<input type="text" name="realtor" size=20 maxlength=150>
When faced with a decision, always ask, 'Which would be the most fun?'
I need to have a drop-down box with realtor names in it and a text box in case the realtor's name isn't in the drop down box. When I tried the following code. The value of realtor is always empty because the text box is empty and seems to reset the value. Is there a way around this? See code below.
<select name="realtor">
<option value="Joan Brown">Joan Brown</option>
<option value="Marshall Payne">Marshall Payne</option>
<option value="Virginia Jackson">Virginia Jackson</option>
<option value="Ann Rawls">Ann Rawls</option>
<option value="Melanie Painter">Melanie Painter</option>
<option value="Daylon Martin">Daylon Martin</option>
</select>
OR
<input type="text" name="realtor" size=20 maxlength=150>
When faced with a decision, always ask, 'Which would be the most fun?'