Please Choose What In game itmes you need:
<select name="Items">
<option value="10">Vulcan $10</option>
<option value="5">AA-12 $5</option>
<option value="3">Corpse Shooter $3</option>
<option value="2">Titanium Blades $2</option>
</select>
Please Choose the color you want:
<select name="Items">
<option value="1">Red</option>
<option value="2">Black</option>
<option value="3">Blue</option>
<option value="4">Purple</option>
</select>
Please Choose When do you need it by:
<select name="time">
<option value="1">Right Away</option>
<option value="2">Within 24 hours</option>
<option value="3">Within the week</option>
<option value="4">On the Weekened</option>
</select>
Please Choose The Amount You want:
<select name="quantity">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
I changed the way you described, but when I click on total i get NaN. And I still can't get the clear button to work, please help with the coding for these two parts!
You have two select elements named Items, so (at least in Google Chrome) document.myForm.Items is an array with two elements. I guess you should rename the color selector to "colors" or something.
And have you added a new form element named "price"? Or maybe you actually meant to point at the input element named "total"?
Code:
document.myForm.total.value = "0.00"
If you want to reset all form elements you can just replace your "Clear" button with the following:
Code:
<input type="reset" value="Clear" />
Edit: also, I noticed now that you have two <body> tags in your html code - there should only be one.
Bookmarks