I'm developing an app that uses the datepicker for the user to enter their date of birth. The site only allows users 18+ to join (no, it's not porn) and so i've set the start and end dates dynamically so that only those who are actually 18 years old can enter their birth dates. The problem test users are reporting is that they first choose the MONTH dropdown, which because it's currently july, only shows January through July (because anyone born after today's date in July in 1993 -- the start year -- isn't yet 18). So people born in August of 1970, e.g. are confused about how to enter their birth date and they think there is something wrong with the app. If I could change the position so that they YEAR selector comes first, then after they select their year, assuming it's not 1993, all the months will be available and no one will be confused. Is is this possible? I can hack around in the js, but I figured I couldn't be the only person who faced this issue so I wanted to see how others had solved it. Worst case, I'll just show all dates through the end of the current year, but we'd really like to keep it to the correct end date. Thanks!