public function addcompanyAction()
 {
     $request = $this->getRequest();
     $sestionClient = PR_Session::getSession(PR_Session::SESSION_USER);
     $api = new PR_Api_Core_ClientClass();
     $contrylist = $api->getListCountry();
     $stateUSList = $api->getListState();
     $this->view->countrylist = $contrylist;
     $this->view->stateUSList = $stateUSList;
     $this->render("addcompany");
 }