public ActionResult TypeAhead()
        {
            SingleStateVM vm = new SingleStateVM()
            {
                StateName = "New York", StateId = 32
            };

            return(View(vm));
        }
 public ActionResult TypeAhead(SingleStateVM vm)
 {
     return(View());
 }