c0af5f216f8ff00466f0d222cede7f491fd17d81
galt
  Fri Jan 20 23:09:35 2023 -0800
More fixes for stuff found by htmlCheck, refs #7914

diff --git src/hg/near/hgNear/expRatio.c src/hg/near/hgNear/expRatio.c
index 9584aac..8e495bd 100644
--- src/hg/near/hgNear/expRatio.c
+++ src/hg/near/hgNear/expRatio.c
@@ -556,31 +556,31 @@
 }
 
 static void expEmdControl(struct column *col)
 /* Show selected/median/all control. */
 {
 struct expMultiData *emd;
 struct expMultiData *curEmd = getSelectedEmd(col, col->emdList);
 char *experimentType = columnSetting(col, "experimentType", "tissue");
 hPrintf("%ss: ", experimentType);
 hPrintf("<SELECT NAME=\"%s\">", configVarName(col, "emd"));
 for (emd = col->emdList; emd != NULL; emd = emd->next)
     {
     hPrintf("<OPTION VALUE=\"%s\"", emd->name);
     if (emd == curEmd)
 	hPrintf(" SELECTED");
-    hPrintf(">%s", emd->shortLabel);
+    hPrintf(">%s</OPTION>", emd->shortLabel);
     }
 hPrintf("</SELECT>\n");
 }
 
 static void expAbsRatioControl(struct column *col)
 /* Show ratio/absolute control. */
 {
 char *name = configVarName(col, "ratioAbs");
 char *curVal = cartUsualString(cart, name, "ratio");
 static char *choices[2] = {"ratio", "absolute"};
 hPrintf("values: ");
 cgiMakeDropList(name, choices, ArraySize(choices), curVal);
 }
 
 static void expMultiConfigControls(struct column *col)