if (itemIndex < 0 || itemIndex > itemCount - 1) {
optgroup.append(option);
} else {
GQuery before = $(optGroupElement.getChild(itemIndex));
before.before(option);
}
// setText must be after the element has been appended to the DOM - see javadoc
setOptionText(option, item, dir);
option.setValue(value);
}