I have created a simple dropdown using the code below.
<div class="row">
<h2>Select Sample #1</h2>
<select class="selectpicker" id="select1">
<option>Mustard</option>
<option>Ketchup</option>
<option>Relish</option>
</select>
</div>
Now need to create the dropdown in a way that I can enter new items to the dropdown so that it will be enabled to select the value and visible next time also.