It's a copy-paste error. See line 215. (the Save button event handler) of AddPersonView.java:
openempi\openempi\webapp-web\src\main\java\org\openempi\webapp\client\mvc\edit\AddPersonView.java
attributes.put("city", address1.getValue());
should be:
attributes.put("city", city.getValue());
Fixed