Your Survey answers are:
Preferred transportation method: whatever their choice is
Carpool? whatever their choice is
Travel methods: whatever their choice is
Distance traveled: whatever their choice is
Comments: whatever their choice is
I got the html part done, but i can't seem to get the JavaScript part working, please help me out.
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Transportation Survey</title> </head> <script language="JavaScript"> <!-- code //--> </script> <body bgcolor="#FFFFFF"> <p align="left"><font size="5">Commuter Survey</font></p> <form method="POST" name="frmSurvey"> <p><br> <font size="4">I prefer to commute by: <select name="lstTravelChoices" size="2"> <option SELECTED>Choose one</option> <option value="My Own Car">My Own Car</option> <option value="Stretch Limo">Stretch Limo</option> <option value="Bus">Bus</option> <option value="Motorcycle">Motorcycle</option> <option value="Train">Train</option> <option value="Balloon">Balloon</option> <option value="Pickup Truck">Pickup Truck</option> <option value="Horse">Horse</option> <option value="Other">Other</option> </select> </font></p> <p><font size="4">I am willing to carpool: <input type="radio" checked name="radCarpool" value="Yes">Yes <input type="radio" name="radCarpool" value="No">No </font></p> <p><font size="4">During the last week I traveled by: <input type="checkbox" name="chkCar" value="Car">Car <input type="checkbox" name="chkBus" value="Bus">Bus <input type="checkbox" name="chkWalk" value="Walk">Walk <input type="checkbox" name="chkBike" value="Bike">Bike <input type="checkbox" name="chkOther" value="Other">Other</font></p> <p><font size="4">Distance I travel: <input type="text" size="5" name="boxDistance" value="0"></font></p> <p><font size="4">Comments: <input type="text" size="47" name="boxComments"></font></p> <p><font size="4"> <input type="submit" name="btnSubmit" value="Submit Survey Results" onClick="DisplayResults();"> <input type="reset" name="btnReset" value="Reset Answers"></font></p> </form> </body> </html>
