I have drop down of some choice where last option is "Other".
I want to display text field when user select other option from drop down.
I am using normal html, Sorry I am AMP beginner, I found some example of amp-list with json option, but i don't know how to implement as i have limited options in drowpdown.
<select data-type="text" id="cuisine" name="cuisine" required>
<option value="german">German wine</option>
<option value="baden">Baden cuisine</option>
<option value="hamburg">Hamburg cuisine</option>
<option value="others">Others</option>
<select>
<div class="form-group hide" id="other_cusone">
<label for="other_city_p" class="active">Other :</label>
<input type="text" id="other_c_p" name="other" placeholder="Other">
</div>
thanks