Colleagues.
I have a combobox which has the hotels list:
<select name="Hotel" id="Hotel" class="form-control">
<option value="Selecione">Hotel</option>
<option value="Hotel A">Hotel A</option>
<option value="Hotel B">Hotel B</option>
<option value="Hotel C">Hotel C</option>
</select>
Only each hotel will have the relation of the accommodation with their respective values that is in another combobox. See:
<select name="Acomodacao" id="Acomodacao" class="form-control">
<option value="Selecione">Acomodação</option>
<option value="SGL">Single Valor X</option>
<option value="DBL">Duplo Valor X</option>
<option value="TPL">Triplo Valor X</option>
<option value="QDL">Quadruplo Valor X</option>
<option value="QTP">Quintuplo Valor X</option>
</select>
How would I do that when I select a hotel, it appears in the other combobox the accommodation referring to it automatically?