Here is a select element with various options:
<select name="kategory" class="select-field">
<option disabled>ATRACTIONS
<option value="">
<option value="Castles">Castles
<option value="History">History
</select>
Additionally, there is a check-box available:
Would you like to eat?<input type="checkbox" class="checkbox" name="restaurants" value="" />
Upon selecting the check-box, the select options need to be updated to the following without refreshing the page:
<option disabled>Restaurants
<option value="China food">Chinas food
<option value="Pizza">Pizza
<option value="Pub">Pub
How can this task be achieved?