/**
  * Lists all models.
  */
 public function actionIndex()
 {
     $model = new Regions('search');
     $model->unsetAttributes();
     // clear any default values
     if (isset($_GET['Regions'])) {
         $model->attributes = $_GET['Regions'];
     }
     $this->render('index', array('model' => $model));
 }