De la documentación:
Cita: changeYear: Allows you to change the year by selecting from a drop-down list. You can enable this feature by setting the attribute to true. Use the yearRange option to control which years are made available for selection.
Código Javascript
:
Ver original$(function(){
$( "#nacimiento" ).datepicker({
changeMonth: true,
changeYear: true,
yearRange: '1940:2000'
});
});
Siempre recurre a la documentación :)