Чтобы получить значения из нескольких раскрывающихся списков, метод:
Template (mypage.html):
<select multiple="multiple" name="services" id="services" size="5">
{% for service in services %}
<option value="{{ service.pk }}">{{ service.name }}</option>
{% endfor %}
</select>
Просмотров (views.py):
myServices = request.POST.getlist('services')
удачи .. !!