ajax autocomplete extender is not working
Try adding this line, i remember i had the same problem once where it worked for me locally but not live.
[WebMethod]
[System.Web.Script.Services.ScriptMethod] <-- Add this line
public static List<string> GetCompletionList(string prefixText, int count)
....