Flash Form not working

Hello guys, I have a flash form that I did not create it but is not working either, the original flash form works, but I added several more fields and several ComboBoxes and does not work. Here is the php file:

<?php 
/////////////////////////////////////////////////////////////////////////////////
// Build the message in HTML - Remember to escape the necessary 
// Message to User
$message = "<html>"; 
$message .= "
 <HEAD>
 <link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.zajacfirm.com/css/myStyles.css\">
 </HEAD>
 <BODY>";
$message .= "<br><br>";
$message .= "<p class=\"emailtext\">Thank you for your submission.  This information has just been sent to the email addresses of Eric Zajac, his paralegal, and to his legal assistant.  Please call the office (toll free 888 575 7615) to confirm your submission.  You may also call Eric's cell phone, 215 519 8883.  The prospective client will be reached as soon as possible, and we will report back to you promptly.</p>";
$message .= "<a href=\"http://www.zajacfirm.com\" target=\"_blank\"><img src=\"http://www.zajacfirm.com/images/zajac_logo.jpg\" alt=\"ZajacFirm.com\" width=\"225\" height=\"59\" border=\"0\"></a>";
$message .= "<div class=\"emailcontactinfo\">1818 Market St., 30th Flr.<br>Philadelphia, PA 19103<br>Telephone: (215) 575-7614<br>Facsimile: (215) 575-7640<br><a class=\"emaillink\" href=\"http://www.zajacfirm.com\">http://www.zajacfirm.com</a></div><br><br>"; 
$message .= "</body></html>";
///////////////////////////////////////////////////////
// Message to Client
$content = "<html>";
$content .= "
 <HEAD>
 <link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.zajacfirm.com/css/myStyles.css\">
 </HEAD>
 <BODY>";
$content .= "<br><br>";
$content .= "<p class=\"emailTitleName\">The Zajac & Arias Law Firm</p>";
$content .= "<hr>";
$content .= "<p class=\"emailtext\"><strong>Claimant Contact Information:</strong></p>";
$content .= "<p class=\"emailtext\"><strong>Name:</strong> $name</p>";
$content .= "<p class=\"emailtext\"><strong>Cell:</strong> $cell</p>";
$content .= "<p class=\"emailtext\"><strong>Home Phone:</strong> $home2</p>";
$content .= "<p class=\"emailtext\"><strong>Home Address:</strong> $address</p>";
$content .= "<p class=\"emailtext\"><strong>City:</strong> $city</p>";
$content .= "<p class=\"emailtext\"><strong>State:</strong> $state2</p>";
$content .= "<p class=\"emailtext\"><strong>Zip Code:</strong> $zip</p>";
$content .= "<hr>";
$content .= "<p class=\"emailtext\"><strong>Claimant Incident Information:</strong></p>";
$content .= "<p class=\"emailtext\"><strong>Currently represented:</strong> $represented</p>";
$content .= "<p class=\"emailtext\"><strong>Type of Case:</strong> $pulldown</p>";
$content .= "<p class=\"emailtext\"><strong>Date:</strong> $date2</p>";
$content .= "<p class=\"emailtext\"><strong>Time:</strong> $time2</p>";
$content .= "<p class=\"emailtext\"><strong>Location:</strong> $location2</p>";
$content .= "<p class=\"emailtext\"><strong>Discription of Incident:</strong> $incident</p>";
$content .= "<p class=\"emailtext\"><strong>Additional Comments:</strong> $comments2</p>";
$content .= "<p class=\"emailtext\"><strong>Medical Records:</strong> $medical</p>";
$content .= "<p class=\"emailtext\"><strong>Police Report:</strong> $police</p>";
$content .= "<p class=\"emailtext\"><strong>Uninsured Motorist Insurance:</strong> $motorista</p>";
$content .= "<p class=\"emailtext\"><strong>Emergency Room:</strong> $emergency</p>";
$content .= "<p class=\"emailtext\"><strong>Ambulance:</strong> $ambulance</p>";
$content .= "<p class=\"emailtext\"><strong>Source:</strong> $source2</p>";
$content .= "<hr>";
////////////////////////////////////////////////////////////////////////////////////
$response = "check";
$m_blank = false;
// I checked the required fields in PHP because it has some nice features like eregi more info: www.php.net
if ( $length = strlen($comments2)<1 and $m_blank == false ){
   $response = 'Additional Comments required';
   $m_blank = true;
}
if ($response == "check") {
 $response = "Thanks"; // thus the flash movie advances to the thank you screen
 error_reporting(E_ALL);
 include('email/htmlMimeMail.php');
 
 $mail = new htmlMimeMail();
 
 $text = $mail->getFile('email/example.txt');
 $mail->setHtml($message, $text, './');
 
 $mail->setFrom('The Zajac Law Firm <eric@zajacfirm.com>');
 $mail->setSubject('Legal Inquiry');
 
 $result = $mail->send(array($email));
 /////////////////////////////////////////////////////////////////
 $mail = new htmlMimeMail();
 
 $text = $mail->getFile('email/example.txt');
 $mail->setHtml($content, $text, './');
 
 $mail->setFrom('The Zajac Law Firm <eric@zajacfirm.com>');
 $mail->setSubject('The Zajac Law Firm Contact Us Information');
 
 $result = $mail->send(array($email, $email2));
}
echo ("&results=$response"); // send feedback to the flash movie
?>

and here is the Flash fla:

http://www.john-designs.com/form_component.zip

I can’t find the error that I have with this form, please help me out guys, I will appreciate it.