diff --git a/internewshid/hid/templates/hid/tabs/filters/location.html b/internewshid/hid/templates/hid/tabs/filters/location.html
index d55f3fec241d2fca6189c15ae22fcb0fdb7ecbb1..c72acbc632dccd8f424d42ef5604fcb04a08a29b 100644
--- a/internewshid/hid/templates/hid/tabs/filters/location.html
+++ b/internewshid/hid/templates/hid/tabs/filters/location.html
@@ -5,7 +5,7 @@
       <select id="location-selector" name="location" class="form-control">
         <option value="All Locations" selected="selected">All Locations</option>
         {% for location in locations.items %}
-          <option value="{{ location }}">{{ location | title }}</option>
+          <option value="{{ location }}"{% if location == request.GET.location %} selected="selected"{% endif %}>{{ location | title }}</option>
         {% endfor %}
       </select>
   </div>