I've already done this with the radio button, but I'm having trouble doing this from a select. When selecting any employee, you must enable and when you select that it represents no employee, it will disable the button.
<form action="questao2.php" method="post">
<fieldset>
<select>
<option name="ativo" value="--" onchange="if(document.getElementById('avancar').disabled==false){document.getElementById('avancar').disabled=true}"/> --</option>
<option name="ativo" value="FUNCIONARIO1" onchange="if(document.getElementById('avancar').disabled==true{document.getElementById('avancar').disabled=false}"/>FUNCIONÁRIO 1</option>
</select>
<button id="avancar" type="submit" disabled="disabled" class="btn btn-primary pull-right" >Avançar</button>
</fieldset>
</form>
<form action="teste.php" method="post">
<fieldset> Sim ou não? <label class="radio">
<input name="ativo" type="radio" value="SIM" onclick="if(document.getElementById('avancar').disabled==true){document.getElementById('avancar').disabled=false}"/>SIM</label>
<label class="radio">
<input name="ativo" type="radio" value="NAO" onclick="if(document.getElementById('avancar').disabled==true){document.getElementById('avancar').disabled=false}"/>NÃO</label>
<button id="avancar" disabled="disabled" class="btn btn-primary pull-right" type="submit">Avançar</button>
</fieldset>
</form>