groups.each(function(model) {
                if(model.get('name').toString().toLowerCase().indexOf(term) !== -1) {
                    results.push({id: '1,' + model.id, text: 'Group: ' + model.get('name')});
                }
            });