On keyup fire a handler to search only by restaurant name - When clicking on the search result populate the output section code example
Example: check when keyup an input from a specific form jquery
var inputs = $('#formID').find('input[type="text"]');
inputs.keyup(function() {
console.log($(this));
});