var $this = $(':text'),
assignedEvent = false;
function showList(){
var ul = $('ul').show();
if ( !assignedEvent ) {
assignedEvent = true;
$(document).click( function(e){
if ( e.target !== $this.get(0) ){ $('ul').hide() };
});
ul.children('li').click(function(e){
e.stopPropagation();
alert('Selected ME');
});
}
}
$this.delegate( 'focusin', showList() );