Hi nauna,
Use yearRange option to set the start year and end year.
The default is from -10 to +10 from current year.
Default: "c-10:c+10"
You can set according to your need.
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery UI DatePicker Year Range</title>
<link type="text/css" rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link type="text/css" rel="stylesheet" href="/resources/demos/style.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script type="text/javascript" src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript">
$(function () {
$("#datepicker").datepicker({
changeMonth: true,
changeYear: true,
yearRange: "1950:c+10"
});
});
</script>
</head>
<body>
<p>Date:<input type="text" id="datepicker"></p>
</body>
</html>
Demo
Refer below link for more details.
jQuery UI DatePicker Year Range