private String renderOption(SelectOption option, String label) {
   StringBuffer buf = new StringBuffer();
   buf.append("<option value=\"");
   buf.append(option.getValue());
   buf.append("\"");
   if (option.isSelected()) buf.append("selected=\"selected\"");
   buf.append(">");
   buf.append(label);
   buf.append("</option>\n");
   return buf.toString();
 }