I have a drop down box in a form like this...
<select name="product[]" id="unitcost">
<option value="92">92mm</option>
<option value="130">130mm</option>
</select>
The value selected is passed to a shopping cart. However, I also need to pass a unit price which is different depending on the value selected.
Can anyone give me any pointers as I have been staring at this for hours?
p.s. I know only very basic Javascript.