diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index a7244ec0a2118a00bf639baf228d6a9a09e4eece..c22bfac2e8b768263447750deed0327af7b24d92 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -1420,7 +1420,7 @@ erectileImplant: 0
 
 <<set $postSexCleanUp = 1>>
 
-<<set $DefaultBirthDestination = "">>
+<<set $DefaultBirthDestination = "anywhere">>
 <<set $abbreviateHormoneBalance = 2>>
 
 <<goto "Alpha disclaimer">>
diff --git a/src/pregmod/csec.tw b/src/pregmod/csec.tw
index 4703d1ba09532c9fb4614d09a5d19740dbc2f1d6..a9d70e6aae18964d29d1f7ca8b5592fea582962a 100644
--- a/src/pregmod/csec.tw
+++ b/src/pregmod/csec.tw
@@ -213,7 +213,7 @@ Performing a cesarean section is trivial for the remote surgery to carry out. $a
 		<<set _lostBabies = 1, _babyCost = random(-12,12)>>
 		sold for a total of @@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@
 		<<set $cash += _curBabies*(50+_babyCost)>>
-	<<elseif $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "">>
+	<<elseif $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "anywhere">>
 		<<set _lostBabies = 1>>
 		sent to one of $arcologies[0].name's future minded schools, to be administered fertility and virility treatments as well as be brought up to take pride in reproduction. $activeSlave.slaveName
 		<<if $activeSlave.fetish == "mindbroken" || $activeSlave.fuckdoll > 0>>
@@ -232,7 +232,7 @@ Performing a cesarean section is trivial for the remote surgery to carry out. $a
 		<</if>>
 		<<set $breederOrphanageTotal += _curBabies>>
 	<</if>>
-	<<if _lostBabies != 1 && $DefaultBirthDestination === "">>
+	<<if _lostBabies != 1 && $DefaultBirthDestination === "anywhere">>
 		<br><br>
 		<<link '...sent to a slave orphanage.'>>
 			<<replace #_disposition>>
@@ -318,10 +318,10 @@ Performing a cesarean section is trivial for the remote surgery to carry out. $a
 			<<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */
 		<</link>> 
 		//Will cost <<print cashFormat(500)>> weekly//
-	<<elseif _lostBabies != 1 && $DefaultBirthDestination != "">>
+	<<elseif _lostBabies != 1 && $DefaultBirthDestination != "anywhere">>
 		$His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sent to $DefaultBirthDestination. $slaves[$i].slaveName
 				<<switch $DefaultBirthDestination>>
-					<<case "a orphanage">>
+					<<case "an orphanage">>
 						<<if $slaves[$i].devotion > 95>>
 							worships you so completely that $he will not resent this.
 						<<elseif $slaves[$i].devotion > 50>>
diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw
index 1ee6f7c9c198f0c6762b51477b03a8a2856d7065..12ca2a19ec169d94694fc8f74e07cc78d88789fe 100644
--- a/src/pregmod/widgets/seBirthWidgets.tw
+++ b/src/pregmod/widgets/seBirthWidgets.tw
@@ -918,7 +918,7 @@ All in all,
 			<<set $cash += _curBabies*(50+_babyCost)>>
 		<</if>>
 	<</if>>
-	<<if _lostBabies != 1 && $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "">>
+	<<if _lostBabies != 1 && $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "anywhere">>
 		<<set _lostBabies = 1>>
 		$His child<<if _count > 1>>ren are<<else>> is<</if>> sent to one of $arcologies[0].name's future minded schools, to be administered fertility and virility treatments as well as be brought up to take pride in reproduction. $slaves[$i].slaveName
 		<<if $slaves[$i].devotion > 95>>
@@ -934,7 +934,7 @@ All in all,
 			<<set $slaves[$i].devotion -= 4, $slaves[$i].trust -= 4>>
 		<</if>>
 		<<set $breederOrphanageTotal += _count, $slaveOrphanageTotal -= _count>>
-	<<elseif _lostBabies != 1 && $DefaultBirthDestination === "" && $universalRulesChildrenBecomeBreeders < 1>>
+	<<elseif _lostBabies != 1 && $DefaultBirthDestination === "anywhere" && $universalRulesChildrenBecomeBreeders < 1>>
 		<<set $slaveOrphanageTotal += _curBabies>>
 		Unless you provide otherwise, the child<<if _curBabies > 1>>ren<</if>> will be remanded to one of $arcologies[0].name's slave orphanages. $slaves[$i].slaveName
 		<<if $slaves[$i].devotion > 95>>
@@ -1053,7 +1053,7 @@ All in all,
 		<</capture>>
 	<</if>>
 	<</span>>
-<<elseif $Cash4Babies == 1 && _curBabies > 0 && $DefaultBirthDestination === "" && $universalRulesChildrenBecomeBreeders < 1>>
+<<elseif $Cash4Babies == 1 && _curBabies > 0 && $DefaultBirthDestination === "anywhere" && $universalRulesChildrenBecomeBreeders < 1>>
 	<br><br>
 	<<set _babyCost = random(-12,12)>>
 	<<if $slaves[$i].prematureBirth == 1>><<set _babyCost = -45>><</if>>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index bff4ca5e155e9c112d711409b5744ff4d1678d14..f8f1a1d64e6e9887c2224890b87351e7adbb869e 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -3706,8 +3706,11 @@ Done!
 	<<unset $individualCosts>>
 <</if>>
 
+<<if $DefaultBirthDestination === "">>
+	<<set $DefaultBirthDestination = "anywhere">>
+<</if>>
 <<if ndef $DefaultBirthDestination>>
-	<<set $DefaultBirthDestination = "">>
+	<<set $DefaultBirthDestination = "anywhere">>
 <</if>>
 <<if ndef $abbreviateHormoneBalance>>
 	<<set $abbreviateHormoneBalance = 2>>
diff --git a/src/uncategorized/seBirth.tw b/src/uncategorized/seBirth.tw
index 90e671b819c3ae0daa2a697c68f6b29cc2021e59..b4cbc1a04835efd4ccf2e8e14ad29d96e84d604a 100644
--- a/src/uncategorized/seBirth.tw
+++ b/src/uncategorized/seBirth.tw
@@ -44,10 +44,10 @@ I need to break single passage to several widgets, as it's been overcomplicated
 
 			<<seBirthBabies>>
 
-			<<if $DefaultBirthDestination != "" && $universalRulesChildrenBecomeBreeders < 1>>
+			<<if $DefaultBirthDestination != "anywhere" && $universalRulesChildrenBecomeBreeders < 1>>
 				$His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sent to $DefaultBirthDestination. $slaves[$i].slaveName
 				<<switch $DefaultBirthDestination>>
-					<<case "a orphanage">>
+					<<case "an orphanage">>
 						<<if $slaves[$i].devotion > 95>>
 							worships you so completely that $he will not resent this.
 						<<elseif $slaves[$i].devotion > 50>>
diff --git a/src/uncategorized/universalRules.tw b/src/uncategorized/universalRules.tw
index 199c5dc70b4870d87609204e5733eccd69f02b62..88a74ef1d20a1320697394d0f992dc110315cfe8 100644
--- a/src/uncategorized/universalRules.tw
+++ b/src/uncategorized/universalRules.tw
@@ -137,9 +137,10 @@ Future society names for new slaves are currently @@.cyan;APPLIED@@. [[Stop appl
 	&nbsp;&nbsp;&nbsp;&nbsp;
 	//Will lessen medical costs, at the expense of scarring//
 <</if>>
-<<if $DefaultBirthDestination !== "">>
+
+<br><br>
+<<if $DefaultBirthDestination !== "anywhere">>
 	<<if $arcologies[0].FSRepopulationFocus > 40>>
-		<br><br>
 		<<if $universalRulesChildrenBecomeBreeders == 1>>
 			Unreserved children ''will be auto-enrolled'' in breeder schools to be raised into fine mothers and fathers.
 			[[Decide children's fate on an individual level|Universal Rules][$universalRulesChildrenBecomeBreeders = 0]]
@@ -154,20 +155,22 @@ Future society names for new slaves are currently @@.cyan;APPLIED@@. [[Stop appl
 	//Option disabled as upon birth slave babies will be sent to $DefaultBirthDestination.//
 <</if>>
 
+<br><br>
 <<if $universalRulesChildrenBecomeBreeders < 1>>
-	<br><br> Upon birth slave babies <<if $DefaultBirthDestination === "">>
+	Upon birth slave babies 
+	<<if $DefaultBirthDestination === "anywhere">>
 		can be sent anywhere. Pre-select their destination a: 
-		[[slave orphanage|Universal Rules][$DefaultBirthDestination = "a orphanage"]]
+		[[slave orphanage|Universal Rules][$DefaultBirthDestination = "an orphanage"]]
 		[[citizen school|Universal Rules][$DefaultBirthDestination = "a citizen school"]]
 		[[private school|Universal Rules][$DefaultBirthDestination = "a private school"]]
 		<<if $Cash4Babies > 0>>
 			[[market|Universal Rules][$DefaultBirthDestination = "the market"]]
 		<</if>>
 	<<else>>
-		will be sent to $DefaultBirthDestination. [[Change your mind.|Universal Rules][$DefaultBirthDestination = ""]]
+		will be sent to $DefaultBirthDestination. [[Change your mind.|Universal Rules][$DefaultBirthDestination = "anywhere"]]
 	<</if>>
 <<else>>
-	<br><br>//Option disabled as unreserved children ''will be auto-enrolled'' in breeder schools.//
+	//Option disabled as unreserved children ''will be auto-enrolled'' in breeder schools.//
 <</if>>
 
 <</if>>