diff --git a/app/templates/main.html b/app/templates/main.html
index fd4f0277ac45d5648f11c95915d315c6c5e85c6e..f57157b951287f4580f2ae7f7486ee69e888eb66 100644
--- a/app/templates/main.html
+++ b/app/templates/main.html
@@ -24,6 +24,9 @@
 		<select name=rooms>
 			<option value=i{{ " selected" if g.rooms=="i" else "" }}>CompSci rooms</option>
 			<option value=m{{ " selected" if g.rooms=="m" else "" }}>Math rooms</option>
+			{% if g.rooms not in ["i", "m"] %}
+			<option value={{g.rooms}} selected>Extra rooms</option>
+			{% endif %}
 		</select>
 		<input type=submit name=submit value="Submit">
 	</form>
diff --git a/app/zoom.py b/app/zoom.py
index 475e0824651083d08c23d4195526e8e6f0bf3e73..af659fd37644e90d5334448b6747a740fbeb3d14 100644
--- a/app/zoom.py
+++ b/app/zoom.py
@@ -88,6 +88,10 @@ room_list = {
         ('ZM7', 'zoom-m-7@d3s.mff.cuni.cz'),
         ('ZM8', 'zoom-m-8@d3s.mff.cuni.cz'),
     ],
+    'krakorec': [
+        ('MJ', 'mj@ucw.cz'),
+        ('KAM', 'zoom@kam.mff.cuni.cz'),
+    ],
 }
 
 @app.route('/')