$(function() {
	$("#fecha_nacimiento").datepicker({dateFormat: 'yy/mm/dd', showOn: 'button', buttonImage: '/imagenes/comunicacion/calendar.gif', buttonImageOnly: true, changeYear: true, changeMonth: true,});
	fecha = new Date();
	ano = parseInt(fecha.getYear()) + 1890;

	$('#fecha_nacimiento').datepicker('option', 'yearRange', '1900:'+ano);
	
	//$('.selector').datepicker({ changeYear: true });
});
