I have the following HTML
<select class="cadastroDireitaInput cadastroSiteSexo" id="sexo" name="sexo">
<option value="">Selecione</option>
<option value="Feminino">Feminino</option>
<option value="Masculino">Masculino</option>
</select>
I have a JS that checks if the fields are filled, such as this line of code:
if($.trim($('#nomeFormUS').val())=='')alert('Informe seu nome!');
In this case, it checks if an input is filled in.
Now, how do I check if any of this Select's option has been selected?