Here's the dizzle. I'm trying to add a PayPal shopping cart to my chainmaille website. I've done this before, years ago, for a different side business but this time, I need to modify some code so the buyer can specify more options.
<input name="item_number" type="radio" value="15 dice">
When the above radio button is checked, it changes the Item Number variable to "15 dice"
At the same time, I would also like the code to update the cost of a 15 dice capacity dice bag
<input type="hidden" name="amount" value="10.00">
..How can I get TWO variables to be updated at once using only the one radio button? There are other radio buttons used, each with different dice capacities and each has an associated `amount` value. For example, a 30 count bag would be $20.
Suggestions?