I have a form to register dependents of a plan, where you can choose child, husband, father-in-law, etc. and then the year of birth
I want you to select the type of relationship by changing the select options, eg
Selecionar filho: Máximo ano atual | Mínimo - 35 anos (1982 a 2017)
Pai/mãe: Máximo ano atual - 12 | Mínimo ano atual - 100 (1917 a 2005)
Outros: Máximo ano atual | Mínimo ano atual - 100 (1917 a 2017)
You can use php, javascript, jquery, qq one.
I just created a rule, I do not know how to bind to the other select:
<select id="grau_parentesco">
<option value="filho">Filho(a)</option>
<option value="pai">Pai</option>
<option value="mae">Mãe</option>
<option value="outros">Outros</option>
</select>
<select id="ano"></option>
<?
$ano_inicial = date("Y");
$qtd = 35;
for($i=0; $i <= $qtd; $i++){
$ano = $ano_inicial-$i;
$ano = sprintf("%02s",$ano);
echo "<option value=\"".$ano."\">".$ano."</option>\n";
}
?>
</select>