﻿
var data = "";
$(document).ready(function () {
    //Autocomplete Location (Town & County)
    $(".town-county-lookup").live('focus', function () {
        $(this).autocomplete("/LocationLookup.aspx?type=0", {
            minChars: 2,
            width: 198
        })
    })
});

