You can add both selectors in your eventmap:
Template.example.events({
'change #year, click button'(event, instance) {
// do things
}
});
Alternatively extract the action into an instance function:
Template.example.onCreated(function() {
this.doSomething = function() {
// do something
};
});
Template.example.events({
'change #year'(event, instance) {
instance.doSomething();
},
'click button'(event, instance) {
instance.doSomething();
}
});