Hello,
I have a downloads page on which I have a form with a drop down choice of what the visitor wants to download: The form is below:
I need a description to be displayed below or above the form of what ever choice of download is made. For Example if a choice of "Catalogue - Model - TMC-SA" is made a description of this catalogue is displayed instantly.
Would I get help how to do that.
Thanks
Ron
I have a downloads page on which I have a form with a drop down choice of what the visitor wants to download: The form is below:
<table>
<tr>
<td width="210" align="left" valign="middle" class="">Your Country:</td>
<td><select class=" validate['required']" name="country" id="country" type="text" required="true" size="1" disabled="disabled" onChange="set_city_state(this,city_state)" style='width:250px;'></select></td>
</tr>
<tr>
<td width="210" align="left" valign="middle" class="">Your State/Province:</td>
<td><select name="city_state" id="city_state" type="text" required="true" size="1" disabled="disabled" onChange="print_city_state(country,this)" style='width:250px;' class=" validate['required']"></select>
</td>
</tr>
<tr>
<td width="210" align="left" valign="middle" class="">Select the Download:</td>
<td> <select id='downloads' name='downloads' type="text" class=" validate['required']" required="true" style='width:250px;' onChange='change_downloads();' >
<option value='Select an Equipment' selected='selected' >Select a Download</option>
<option value='Catalogue - Model - TMC-IA'>Catalogue - Model - TMC-IA</option>
<option value='Catalogue - Model - TMC-SA'>Catalogue - Model - TMC-SA</option>
<option value='Catalogue - Model - Compact'>Catalogue - Model - Compact</option>
</select>
</td>
</table>
I need a description to be displayed below or above the form of what ever choice of download is made. For Example if a choice of "Catalogue - Model - TMC-SA" is made a description of this catalogue is displayed instantly.
Would I get help how to do that.
Thanks
Ron