diff --git a/src/Mods/SecExp/attackOptions.tw b/src/Mods/SecExp/attackOptions.tw
index 8bc565d2a597a515572d7cde479895be8065ce3e..a35834ca22790f257d0161370af7b44cc53019b9 100644
--- a/src/Mods/SecExp/attackOptions.tw
+++ b/src/Mods/SecExp/attackOptions.tw
@@ -5,11 +5,11 @@
 <</if>>
 <<set $nextButton = " ", $nextLink = "attackOptions", $showEncyclopedia = 1, $encyclopedia = "Battles">>
 
-<<options $SecExp.settings.unitDescriptions>>
-	Unit descriptions are
-	<<option 1 "Abbreviated">>
-	<<option 0 "Summarized">>
-<</options>>
+<<set _options = new App.UI.OptionsGroup()>>
+<<run _options.addOption("Unit descriptions are", "unitDescriptions", $SecExp.settings)
+.addValueList([["Abbreviated", 1], ["Summarized", 0]])>>
+<<print App.UI.DOM.includeDOM(_options.render())>>
+
 <br>
 
 <<if $majorBattle == 0>>
@@ -398,13 +398,11 @@ __Battle Plan__:
 <</if>>
 
 <<if $SF.Toggle && $SF.Active >= 1 && $majorBattle>> <br>
-	<<options $SFIntervention>>
-		The incoming attack's scale warrants deploying the special force.
-		<<option 1 "Green light">>
-		<<option 0 "Red light">>
-		<<comment>>
-			//Some upgrades will be able to support your troops even if the special force is not deployed in the fight.//
-	<</options>>
+	<<set _options = new App.UI.OptionsGroup()>>
+	<<run _options.addOption("The incoming attack's scale warrants deploying the special force.", "SFIntervention")
+	.addValue("Green light", 1).on().addValue("Red light", 0).off()
+	.addComment("Some upgrades will be able to support your troops even if the special force is not deployed in the fight.")>>
+	<<print App.UI.DOM.includeDOM(_options.render())>>
 <</if>>
 
 <<if $lastSelection.length > 0>> <br>
diff --git a/src/Mods/SecExp/buildings/secBarracks.tw b/src/Mods/SecExp/buildings/secBarracks.tw
index ada03c5458f4fe44f7ee34c8c3b2db0276cb0ebe..bc32450072ce23bb9e470afad7b6b461b4f579a6 100644
--- a/src/Mods/SecExp/buildings/secBarracks.tw
+++ b/src/Mods/SecExp/buildings/secBarracks.tw
@@ -127,11 +127,10 @@ __Units__
 <br>
 Your current maximum number of units is <<print App.SecExp.battle.maxUnits()>> (<<print num($secBots.maxTroops+(50*App.SecExp.battle.maxUnits()))>> troops), <<print App.SecExp.battle.activeUnits()>> (<<print num($secBots.maxTroops+($slavesEmployedManpower)+($militiaEmployedManpower)+($mercEmployedManpower))>> troops) are active and <<print (2 * App.SecExp.battle.deploySpeed())>> units can be deployed. <<if $SecExp.buildings.barracks.upgrades.luxury > 0>>The barracks provides <<print $SecExp.buildings.barracks.upgrades.luxury * 5>>% bonus morale when battle occurs.<</if>> <<if $SecExp.buildings.barracks.upgrades.training > 0>>The training facility will increase the effectiveness of your units with time.<</if>>
 <br>
-<<options $SecExp.settings.unitDescriptions>>
-	Unit descriptions are
-	<<option 1 "Abbreviated">>
-	<<option 0 "Summarized">>
-<</options>>
+<<set _options = new App.UI.OptionsGroup()>>
+<<run _options.addOption("Unit descriptions are", "unitDescriptions", $SecExp.settings)
+.addValue("Abbreviated", 1).on().addValue("Summarized", 0).off()>>
+<<print App.UI.DOM.includeDOM(_options.render())>>
 <<if App.SecExp.battle.activeUnits() >= App.SecExp.battle.maxUnits()>>
 	<br>You have reached the maximum number of units. You'll have to disband one or enlarge the barracks before forming a new unit.
 <</if>>
diff --git a/src/uncategorized/costsBudget.tw b/src/uncategorized/costsBudget.tw
index b7a2fee2f3e2db9eee2ad541ac0fb8d48d5b12ce..2ac4ee73c508d2a9c206dd70dc4b47f1da4e94e3 100644
--- a/src/uncategorized/costsBudget.tw
+++ b/src/uncategorized/costsBudget.tw
@@ -77,10 +77,10 @@
 <</if>>
 
 <span class="detail">Your weekly costs are as follows:</span>
-<<options $showAllEntries.costsBudget>>
-	<<option 0 "Normal">>
-	<<option 1 "Show Empty Entries">>
-<</options>>
+<<set _options = new App.UI.OptionsGroup()>>
+<<run _options.addOption("", "costsBudget", $showAllEntries)
+.addValue("Normal", 0).on().addValue("Show Empty Entries", 1).neutral()>>
+<<print App.UI.DOM.includeDOM(_options.render())>>
 
 <p>
 /* Table of Totals */
diff --git a/src/uncategorized/repBudget.tw b/src/uncategorized/repBudget.tw
index 9e538b4092311fdef9f14dcf00f59cdfe3ccac83..cd633db5bfefaca853a758af70dd362a804749f1 100644
--- a/src/uncategorized/repBudget.tw
+++ b/src/uncategorized/repBudget.tw
@@ -21,10 +21,10 @@
 <br style="clear:both"><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>>
 <br>
 //Your weekly reputation changes are as follows://
-<<options $showAllEntries.repBudget>>
-	<<option 0 "Normal">>
-	<<option 1 "Show Empty Entries">>
-<</options>>
+<<set _options = new App.UI.OptionsGroup()>>
+<<run _options.addOption("", "repBudget", $showAllEntries)
+.addValue("Normal", 0).on().addValue("Show Empty Entries", 1).neutral()>>
+<<print App.UI.DOM.includeDOM(_options.render())>>
 
 /* Table of Totals */
 <<if ndef $lastWeeksRepIncome>>