public ActionResult Index(long geographicLocationId)
 {
     using (var context = ContextFactory.SizeUpContext)
     {
         var data = Demographics.Get(context, geographicLocationId);
         return(Json(data, JsonRequestBehavior.AllowGet));
     }
 }