Thanks, that was it!
For anyone who gets to this post by a search, Thomas was correct --
the problem was that I had not set a value, but added acceptible
values. So since it had no value, it added "null" to the list. I
resolved it by setting the value PRIOR to setting the acceptible
values, like this --
storeListBox.setValue(currentStore);
storeListBox.setAcceptableValues(app.getStoresList());
And that resolved the issue.