public function actionRemove()
 {
     $humanId = (int) Yii::app()->getRequest()->getPost('id');
     $humanModel = new Human();
     if ($humanId > 0) {
         $humanModel->deleteRowById($humanId);
     }
 }