diff --git a/src/components/registration/steps.jsx b/src/components/registration/steps.jsx index 433c2f04372..4029d1b4cc4 100644 --- a/src/components/registration/steps.jsx +++ b/src/components/registration/steps.jsx @@ -324,7 +324,7 @@ module.exports = { }, getYearOptions: function () { return Array.apply(null, Array(100)).map(function (v, id) { - var year = 2016 - id; + var year = new Date().getFullYear() - id; return {value: year, label: year}; }); },