Index: remit/settings.py
===================================================================
--- remit/settings.py	(revision 0f53aaee24b53b1f902943f15accf613680dc953)
+++ remit/settings.py	(revision 6f24604ea985b99c264801d82cb51d2eb08096bb)
@@ -27,4 +27,6 @@
 DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
 DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
+
+BASE_COMMITTEE_PATH = ['Accounts', 'Assets', ]
 
 from local_settings import *
Index: remit/vouchers/views.py
===================================================================
--- remit/vouchers/views.py	(revision b34d56802b9f6d917d995ea01a97747c17a29a7b)
+++ remit/vouchers/views.py	(revision 6f24604ea985b99c264801d82cb51d2eb08096bb)
@@ -36,5 +36,5 @@
 class CommitteesField(ModelChoiceField):
     def __init__(self, *args, **kargs):
-        base_area = BudgetArea.get_by_path(['Accounts', 'Assets', 'Budget', ])
+        base_area = BudgetArea.get_by_path(settings.BASE_COMMITTEE_PATH)
         self.strip_levels = base_area.depth
         areas = (base_area.get_descendants()
