With this little snippet you can easily set a trigger on autocomplete field options (suggestions) click:
$(document).on('click', 'div.reference-autocomplete', function(e) {
// Do what you need to do ;)
});
It's not that easy because the selection click does not trigger any change event on the parent input.