Suppose I have a dropdown select option like below:
<form>
<select name="option" >
<option value="">Select a Value:</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</select>
</form>
When any user Selects the Option 1 I want to display the following dropdown select beside it instantly
<select name="name" >
<option value="">Select a person:</option>
<option value="john">john</option>
<option value="Micheal">Micheal</option>
</select>
Or, if any user Selects the Option 2 I want to display the following dropdown select beside it instantly
<select name="class" >
<option value="">Select a person:</option>
<option value="Class 1">Class 1</option>
<option value="Class 2">Class 2</option>
</select>
Would you please kindly show me how to do this? I am using Codeigniter.