hi everyone i was hoping someone could give me a quick hand. i created a double drop down menu that i want to include in my categories box. I created a custom categories sidebox and i want the drop downs on the top. this is the code for side box The section in red is where the problem lies i get this error

Parse error: syntax error, unexpected T_STRING in /home/cara1977/public_html/gothenaturalway/includes/templates/classic/sideboxes/tpl_customcats_sidebox.php on line 39


i assume the error is coming from 'SubCategory'
im not sure how i would fix this problem.

Code:
<?php
//
// Blank Sidebox Mod
// includes/templates/templates_default/sideboxes/tpl_blank_sidebox.php
//
//  --------------------------------------------------
//  http://www.MommaMuse.com mod Zen-Cart - by Judi Cox                  
//  --------------------------------------------------
//  zen-cart Open Source E-commerce                                      
//  Copyright (c) 2003-2006 The zen-cart developers                           
//  http://www.zen-cart.com/index.php                                    
//  Portions Copyright (c) 2003 osCommerce                               
//  --------------------------------------------------
//  This source file is subject to version 2.0 of the GPL license,       
//  that is bundled with this package in the file LICENSE, and is        
//  available through the world-wide-web at the following url:           
//  http://www.zen-cart.com/license/2_0.txt.                             
//  If you did not receive a copy of the zen-cart license and are unable 
//  to obtain it through the world-wide-web, please send a note to       
//  [email protected] so we can mail you a copy immediately.
//  --------------------------------------------------
//
// $Id: tpl_customecats_sidebox.php,v 1.0 6/24/2006
// Original modification by Carter Harris [email protected] based on the tpl_featured.php file 
// Additionally modified by Judi Cox http://www.mommamuse.com

  $content = '';
  $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
  $content .= '  <br>
       <center> Choose An Ailment<br> </center><br>
  <!-- category dropdown -->
            <SCRIPT language=JavaScript 
            src="dropdown/category-picker.js" 
            type=text/javascript></SCRIPT>
            
            <CENTER>
            <FORM name=category_picker action="" method=get> <SELECT 
            style="FONT-SIZE: 11px; WIDTH: 147px; FONT-FAMILY: arial" 
            onchange="PopulatePane(this, 'SubCategory');" size=1 
            name=MainCategory></SELECT> <br><br><SELECT 
            style="FONT-SIZE: 11px; WIDTH: 147px; FONT-FAMILY: arial" 
            onchange=changePage(this.form); size=1 name=SubCategory></SELECT> 
            </FORM></CENTER>
            <SCRIPT language=JavaScript 
            src="dropdown/category-dropdown.js" 
            type=text/javascript></SCRIPT>





<!-- InstanceEnd --><br><Br>
  
  <a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=250"  class="cat">  
<center><h3 class="descrip"><u>Baby's Health</u>  </h3>     </center>     
                   
	Cradle Cap, Diaper Rash, Soothing, Teething, More... </a>   <hr size="1" color="#000000">                                                      

<a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=242"  class="cat">   
	<center><h3 class="descrip">Children's Health </h3>     </center>
	
	
		Learning & Concentration, Mood###&###Behavior, Child Obesity, More... </a> <hr size="1" color="#000000">
                                    
		
<a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=243" class="cat">     
<center><h3 class="descrip">Men's Health </h3>     </center>

	Prostate, Sexual Health, Heart Health, More...</a><hr size="1" color="#000000">
                                    


<a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=244" class="cat">  
<center><h3 class="descrip">Women's Health </h3>     </center>

Menopause, Sexual Health, Pregnancy, More... </a><hr size="1" color="#000000">
                                          


<a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=245" class="cat">  
<center><h3 class="descrip">Senior's Health </h3>     </center>

Memory, Vision, Joint Health, More...</a><hr size="1" color="#000000">
                                       
<a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=246" class="cat">    
<center><h3 class="descrip">Psychological </h3>     </center>

Mood Support, Stress &###Sleep, Learning & Concentration, More...</a><hr size="1" color="#000000">
                                   
<a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=247" class="cat">   
<center><h3 class="descrip">Weight Management </h3>     </center>

Metabolism & Weight, Detox & Cleansing, Energy, More...</a><hr size="1" color="#000000">
                                       

<a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=248" class="cat">     
<center><h3 class="descrip">Body & Physical </h3>     </center>

Thyroid & Adrenal, Liver & Pancreas, Cancer Support, Respiratory, More...</a><hr size="1" color="#000000">
                                          

<a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=249" class="cat">     
<center><h3 class="descrip">General & Family Health </h3>     </center>

Embarrassing Conditions, Infections, Cuts & Bruises, Immunity &###Energy, Colds, Flu & Respiratory, Skin Health, More... 
                                               
</a><hr size="1" color="#000000"> 

<a   href="http://www.gothenaturalway.com/index.php?main_page=index&cPath=251" class="cat"> 
<center><h3 class="descrip">Pet's Health </h3>     </center>

Aggression, Anxiety, Coat & Skin, Disobedience, Colds, Asthma, Cancer, More... 
                                           
</a> 
';
  $content .= '</div>';
?>

i will be fixing all the html coding up soon. it will all be css so don't mind.