public function removeAdditionalAction()
 {
     $pageSession = new Zend_Session_Namespace('portfolio_insurance_quote');
     $customerReferenceNumber = $pageSession->CustomerRefNo;
     $return = array();
     $request = $this->getRequest();
     $postdata = $request->getPost();
     $return['success'] = false;
     $interestManager = new Manager_Insurance_Portfolio_AdditionalInformation();
     $interestManager->removeAdditional($postdata['id']);
     // Do the update stuffs
     // Get the properties to shove back into the page
     $interestArray = $interestManager->fetchAllByRefNo($customerReferenceNumber);
     $return['html'] = $this->view->partialLoop('portfolio-insurance-quote/partials/additional-list.phtml', $interestArray);
     $return['success'] = true;
     echo Zend_Json::encode($return);
 }