im looking to add 2 text boxes to a drop down menu, what i mean is when some one selects an option in my drop down menu 2 text boxes appear i want this feature on three options also i want them to see what data i want them to pop in here is what i have below i want option 5 6 and 7 to have this feature in the job discription menu thank you for your help and advice
---------------------------------------------------------------------------------------------------
<html>
<head>
<title>html template</title>
</head>
<body>
<form name="personaldata" method="POST" action=" ">
<input type=hidden name="recipient" value="">
<input type=hidden name="required" value="email">
<fieldset>
<legend>Job Request Form</legend>
fred: <input type="text" name="fred" /><br /><br />
info: <input type="text" name="info" size=30 value="type your info'"><br /><br
/>
E-mail: <input type=text name="email" size=30 value="Please enter your email
address"><br /><br />
Job discription:<br />
<select name="Jobdiscription" size="1">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
</select><br /><br />
Package:<br />
<select name="Package" size="1">
<option value="pie">pie</option>
<option value="pastie">pastie</option>
<option value="buttie">buttie</option>
<option value="fruit">fruit</option>
</select><br /><br />
type<input type="text" name="type" size=30 value="Required type here"><br /><br
/>
Please type other details here:<br />
<textarea name="Please type other details here" rows="10"
cols="30"></textarea><br /><br />
<input type="submit" value="Send"> <input type="reset" value="Reset">
</fieldset>
</form>
</body>
</html>
------------------------------------------------------------------------------------------------------------
