Is not preferably to put several values into one field.
You could create a special table: location_choices
Fields could be:
id .......(choice_id)
user_id
location
(date_of_choice (eventually))
Insert choices from user_id 2 and 3
user_id, location
2, Town Mall
2, Jensen Building
3, NewYork
3, Jensen Building
The benefit from having only one value in each field
is when you need to search for and select things.
It is easy to find a list of all users that has 'Jensen Building' as choice.
It is also easy to find all choices of user_id='2"