var place = this.getPlace();
}
input = document.getElementById('inputSearch');
autocomplete = new google.maps.places.Autocomplete(input);
google.maps.event.addDomListener(autocomplete, 'place_changed', callBack);
$(document).ready(function() {
// this should trigger after user hits the tab key in the input field after entering some matched text
$(input).focusout(function(){// get the first item of the autocomplete pop-upvar searchAddress = $(from).find('.pac-item:first').text();
});