I am aiming to create a form to generate a quick quote. The ambition is that theu ser is able to select computer parts with a value assigned to each > .
For instance,
<form id="formsum">
<select>
<option value="1">1</option>
<option value="5">2</option>
<option value="2">3</option>
</select>
</form>
<form id="formsum2">
<select>
<option value="2">1</option>
<option value="10">2</option>
<option value="4">3</option>
</select>
</form>
So if the user selects option 2 on formsum and then 2 on formsum2 Id like the function to read "15".
jscode?