// Set/Change the Year in the dropdown
var startyear = "2009"; // Change the Starting year in your dropdown
var endyear = "2020";  // Change th ending year in the dropdown
function selectdate() {
var mon = document.nday.varmonth.options[document.nday.varmonth.selectedIndex].value;
var day = document.nday.varday.options[document.nday.varday.selectedIndex].value;
var year = document.nday.varyear.options[document.nday.varyear.selectedIndex].value;
alert("Prints in mm/dd/yyyy format:-"+day+"/"+mon+"/"+year);
}
