wurm: Dropdown : Suche funktioniert nicht

Beitrag lesen

.. hallo zusammen hab ne frage hab ein script mit suchfunktion und mehreren if anweisungen ... habe jetzt eine if anweisung als dropdown gemacht aber genau dieses feldt hat in meiner suchfunktion auf einmal keine funktion bzw. wird der suchbegriff irgendw. nicht der suche übergeben?? .. kann mir jemand helfen?? ..wo hab ich nen fehler gemacht??
if ($ad_1_text)
{

print("<tr>");
  print("<td width="50%" valign="top"> $ad_1_text </td>");
  print("<td width="50%" valign="top">");
  print('<form method="post" action="search.php">');
   print('<select size="1" name="custom_field_1\ class="txt"">');
   print('<option value="custom_field_1">New</option>');
   print('<option value="custom_field_1"><1 Month</option>');
   print('<option value="custom_field_1">2-6 Months</option>');
   print('<option value="custom_field_1">6-12 Months</option>');
   print('<option value="custom_field_1"><1 Year</option>');
   print('<option value="custom_field_1"><2 Years</option>');
   print('<option value="custom_field_1"><3 Years</option>');
   print('<option value="custom_field_1"><4 Years</option>');
   print('<option value="custom_field_1"><5 Years</option>');
   print('<option value="custom_field_1">over 5 Years</option>');
   print('</select>');
   print('<value="$custom_field_1" />');
  print("</td>");
  print("</tr>");
}
?>