@RequestMapping(value = "/receipts/getLotLocations", method = RequestMethod.POST)
 public @ResponseBody List<SelectOption> getLotLocations() {
   logger.info("In ReceiptsController-getLotLocations()...");
   List<SelectOption> lotLocations = null;
   try {
     lotLocations = receiptsService.getLotLocations();
   } catch (Exception e) {
     logger.error(e);
   }
   return lotLocations;
 }