I am trying to figure out how to add interactive drop down options to my site. I'm not sure what it would technically be called, maybe if I knew that I could do some more searching around for the answer so any help would be greatly appreciated.
You can see an idea what I am wanting at
http://myazdesign.com/dropdown.html the only difference is I want it to show a price based on what options are chosen.
I'm not expecting anyone to give me the code but any ideas, or advice would be appreciated. (Such as what I might google to find the answer,
Thanks in advance!
CODE
<label>
<select name="size" id="size">
<option value="Size" selected="selected">Size</option>
<option value="46">4x6</option>
<option value="8555">8.5x5.5</option>
<option value="8511">8.5x11</option>
</select>
</label>
<label>
<select name="Qty" id="Qty">
<option value="Quantity" selected="selected">Quantity</option>
<option value="1000">1000</option>
<option value="2500">2500</option>
<option value="5000">5000</option>
<option value="10000">10000</option>
</select>
</label>
<label>
<select name="Colors" id="Colors">
<option value="Colors" selected="selected">Colors</option>
<option value="Front Only">Front Only</option>
<option value="Front Back">Front & Back</option>
</select>