Access a variable outside the scope of a Handlebars.js each loop
Try
<option value="{{id}}">{{title}} {{../externalValue}}</option>
The ../
path segment references the parent template scope that should be what you want.
Or you can use absolute path like this:
<option value="{{id}}">{{title}} {{@root.user.path.to.externalValue}}</option>