I am trying to have an option for user to select and when they select Option 1, it only displays a specific option next. If they select Option 2, it only displays a different specific option. Does that makes sense? The start of my code is:
Is this a possibility?
<div class="form_item">
<div class="form_element cf_heading">
<h2 class="cf_text">Leagues</h2>
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_dropdown">
<label class="cf_label" style="width: 215px;">Running Leagues</label>
<select class="cf_inputbox validate-selection" id="select_31" size="1" title="" name="leagues">
<option value="">--Choose an area</option>
<option value="Portland/Vancouver">Portland/Vancouver</option>
<option value="Phoenix/Mesa">Phoenix/Mesa</option>
</select>
</div>
When the user selects Portland/Vancouver, another option needs to appear that has the following options: 1. League A 2. League B 3. League CIs this a possibility?