var $ = jQuery;

$(document).ready(function() {
    $("#countryDropDown").autocomplete(data, {
      minChars: 1,
      width: 180,
      max: 25,
      delay: 0,
      selectFirst: true,
      mustMatch: true,
      formatItem: function(item) {
        return item.text;
      }
    }).result(function(event, item) {
      location.href = item.url;
    }).focus(function() {
      if (this.value == this.defaultValue) {
        this.value = "";
      }
    }).blur(function() {
      if (!this.value.length) {
        this.value = this.defaultValue;
      }
    });
  });


