To view the code for any page, right click / view source.
If you need help with any of these forms or, you find one not working correctly, please email me.
With this form, I've added a couple of little tricks you might find useful, the first is to provide the viewer with extra information when a selection is made.
Click in the box for 'Type Color' see how we are shown extra information relating to that selection, this can be applied to ANY item, try the checkboxes. All you need to do is right click on this page and copy the script to your 'head' area, then add id="color" value="Black" onFocus="javascript:toggleMsg('msg-1')" onBlur="javascript:toggleMsg('msg-1')" changing the value= to suit your form. Then add id="msg-1" class="color" style="visibility:hidden;">Or replace Black with yours, i.e. "Maroon" and wrap in a span as < span removing the gap before the word span, at the end close with < / span > remove all gaps in this statement.
To use this on another area of your form, simply change msg-1 to msg-2 plus your words.
The second trick is to empty form boxes when they're clicked on, try the First Name etc boxes, this is achieved by adding onfocus="if(this.value==this.defaultValue) this.value='';" to your text box.