// called for the <option> start tag
public void _optionStart(Attributes attrs) {
if (attrs != null) {
_option = new NameValue();
int n = attrs.getLength();
for (int i = 0; i < n; i++) {
String name = attrs.getQName(i);
String value = attrs.getValue(i);
if (name.equals("name")) {