Hi, i have a very simple form that is on a site to sell pictures. The problem i have is with the javascript, and is not a big deal either is just that i dont know javascript at all.
The form has one dropdown menu used to select the qty. of pictures to buy and a text input to display the total price to pay.
What i want to do with javascript is to multiply the selected qty. by the price (£ 10.00) and show the total in the input field in the 10.00 format.
This is what i got so far, no javascript at all yet
<form name="store" action="reserve.php">
<select name="qty">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
£<input name="total" style="width: 4em;" readonly="readonly">
</form>