I have a select combo box here. What I need is the input text box to appear when other option is selected in select box. I have been using bootstrap select
tag.
<select name="store_name" id="store_name" class="selectpicker" data-width="100%">
<option value="" disabled="disabled" >Please select</option>
<option value="Option 1">Option 1</option>
<option value="Option 2">Option 2</option>
<option value="Other">Other</option>
</select>
<input type="text" id="store_name" name="store_name" value="" class="form-control" />