<form>
<select required>//se esse for selecionado não precisaria selecionar o outro
<option value="">
<option value="1">1</option>
<option value="2">2</option>
</select>
<select required>//da mesma forma se esse for selecionado o outro não precisa ser também.
<option value="3">3</option>
<option value="4">4</option>
</select>
</form>
The result of this code does not let me select only 1 select, I must select both to work, ie I would like a structure in the logic style "OR" and not "AND" as it happens here. If you have any way to do this without JS it would be even better.
OBS: Yes, I need two SELECTS to do this for the sake of intuitiveness.