I use jQuery datepicker and need one with the years select element. This is the code of my element:
$("#geburtsdatum").datepicker({
"yearRange":"2000:2010",
"firstDay":1,
"dayNamesMin":["So","Mo","Di","Mi","Do","Fr","Sa"],
"monthNames":["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],
"dateFormat":"dd.mm.yy"});
However I am missing the select in my datepicker. Has anybody any idea what am I doing wrong? (I’m working with jquery-1.7.1.)

You need to add the “changeYear” option. See the source on the documentations page here.