var year=new Date().getFullYear();
for (var i = year;i >= year - 70;i--){
var option = document.createElement ('option');
option.value = i;
var txt = document.createTextNode (i);
option.appendChild (txt);
$("#select").append(option);
}