@RequestMapping(
     value = "getCities",
     method = {RequestMethod.GET},
     produces = "text/html")
 @ResponseBody
 public String getCities(@RequestParam("stateID") Integer stateID) {
   return guestService.updateCityOptions(stateID);
 }