
May 1st, 2009, 10:56 PM
|
|
Registered User
|
|
Join Date: May 2009
Posts: 1
Time spent in forums: 12 m 34 sec
Reputation Power: 0
|
|
|
List box combinations
Hi guys,
Here is the code for part of a form on my website:
Code:
<tr>
<td class="style35">Print size:</td>
<td><span class="style37">
<select name="printsize" id="printsize">
<option value="8 x 12 (inches) - $20">8 x 12 (inches) - $20</option>
<option value="12 x 18 (inches) - $35">12 x 18 (inches) - $35</option>
<option value="18 x 24 (inches) - $50">18 x 24 (inches) - $50</option>
<option value="24 x 36 (inches) - $75">24 x 36 (inches) - $75</option>
</select>
</span></td>
</tr>
<tr>
<td class="style35">Framing/Mounting:</td>
<td><select name="framing" id="framing">
<option value="Print only" selected="selected">Print only</option>
<option value="Mounted on wood">Mounted on wood</option>
<option value="Canvas">Canvas</option>
</select></td>
</tr>
<tr>
<td class="style35">Final cost:</td>
<td> </td>
</tr>
I want a text number to appear in the place of the at the end when print size option is selected and a framing option is selected. There is a different price for each combination.
How can this be done?
Thanks for any help!
|