_db->select(); $select->from($this->_getPair(), array('id', 'title')); $select->where('title LIKE ?', $term . '%'); $select->order('title'); $select->limit(50); if (($list = $this->_db->fetchAll($select))) { foreach ($list as $row) { $states[] = array('value' => $row['id'], 'title' => $row['title']); } } return $states; } }