function populate_activities_list(selector, city, wrap_tag) {
    
	$.getJSON("/index.php/activities/ajax/from_city/" + city, function(json){

         if(json.status == 'success') {
         	
			$.each(json.activities, function(i, activity) {

				if(activity.profile_count > 0) {
					li = $('<li/>');
					a = $('<a/>').text(activity.title + ' (' + activity.profile_count + ')').attr('id', 'activity-' + activity.id).attr('href', BASE_URL + 'profiles/browse/activity/' + activity.id + '/' + city + '.html');
					
					$(selector).append(li.append(a));
				}
			});
	
	     }
    });
}
