Hoping I understood your question - forgive me if I did not - then you can try the following:
$(function() {
$(document).on('click','.ui-autocomplete li[role=presentation]',function() {
var selVal = $(this).text(); //value just selected
//do whatever with value .. such as ..
alert( selVal );
});
});