Cannot select autocomplete

Cannot select autocomplete

I have autocomplete showing up where I type into the textbox but when I try to select one with my mouse or keyboard it does not fill in the textbox with the option selected. Code is below. Please help
 
  1. <

    script type="text/javascript">

    $(

    function() {

    $(

    "#Business_Address").autocomplete({

    source:

    function(request, response) {

    $.ajax({

    url:

    "Get",

    focus:

    function(event, ui) {

    $(

    "#Business_Address").val(ui.label);

    return false;

    },

    select:

    function( event, ui ) {

    $(

    "#Business_Address").val(ui.item.label);

    return false;

    },

    minChars: 2,

    data: { PartialStreetName: request.term },

    dataType:

    "json",

    crossDomain:

    true,

    type:

    'GET',

    success:

    function(data) {

    if (data == null)

    { alert(

    "nothing"); }

    else {

    response(data)

    }

    }

    });

    }

    })

    .data(

    "autocomplete")._renderItem = function(ul, item) {

    return $( "<li></li>" )

    .data(

    "item.autocomplete", item )

    .append(

    "<a>" + item.Label )

    .appendTo( ul );

    };

    });

    </script>