Displaying results problem

how to display the exact results by selecting the values in form selectcity and match and print matching phone_no,name and address in table. these is what i have done so far newbie in rails any help would be great…

1.controller

class TelephoneController < ApplicationController
def index
end

def AreaWiseSearch
@telephone_records = TelephoneRecords.find(:all)
end
end

2.created a form with this action index.html.erb

<form name=“form1” method=“post” action=“AreaWiseSearch.aspx?Area=04” id=“form1”>
<table width =“100%” cellpadding=“0” cellspacing=“0” border=“0” align=“center”>
<tr>
<td>

                      &lt;table border="1" style="border-collapse:collapse"  cellpadding="0" cellspacing="2" bordercolor="green" width ="90%"&gt;
                          &lt;tr class="txt2"&gt;
                      &lt;td align="left" colspan="1" style="width: 97px; height: 26px;"&gt;Select City&lt;/td&gt;
                      &lt;td align="left" colspan="4" style=" height: 26px;"&gt;
                         &lt;select name="DropDownList2" id="DropDownList2"&gt;
&lt;option value="BAGBAHARA"&gt;BAGBAHARA&lt;/option&gt;
&lt;option value="BALODABAZAR"&gt;BALODABAZAR&lt;/option&gt;
&lt;option value="BASNA"&gt;BASNA&lt;/option&gt;
&lt;option value="BHATARPARA"&gt;BHATARPARA&lt;/option&gt;
&lt;option value="BILAIGARH"&gt;BILAIGARH&lt;/option&gt;
&lt;option value="DEOBHOG"&gt;DEOBHOG&lt;/option&gt;
&lt;option value="DHAMTARI"&gt;DHAMTARI&lt;/option&gt;
&lt;option value="FIGESHWAR"&gt;FIGESHWAR&lt;/option&gt;
&lt;option value="gariyaband"&gt;gariyaband&lt;/option&gt;
&lt;option value="KASDOL"&gt;KASDOL&lt;/option&gt;
&lt;option value="KURUD"&gt;KURUD&lt;/option&gt;
&lt;option value="MAHASAMUND"&gt;MAHASAMUND&lt;/option&gt;
&lt;option value="MAINPUR"&gt;MAINPUR&lt;/option&gt;
&lt;option value="MANPUR"&gt;MANPUR&lt;/option&gt;
&lt;option value="Nagri"&gt;Nagri&lt;/option&gt;
&lt;option value="NEORA"&gt;NEORA&lt;/option&gt;
&lt;option value="RAIPUR"&gt;RAIPUR&lt;/option&gt;
&lt;option value="SARAIPALI"&gt;SARAIPALI&lt;/option&gt;

</select></td>
</tr>
<tr class=“txt2”>
<td align=“left” colspan=“2” style=“width: 85px;”>Search By</td>
<td align=“left” style=“width: 100px” class=“txt2”>
<input id=“rdbName” type=“radio” name=“Search” value=“rdbName” checked=“checked” /><label for=“rdbName”>Name</label></td>
<td align=“left” style=“width: 100px” class=“txt2”>
<input id=“rdbAddress” type=“radio” name=“Search” value=“rdbAddress” /><label for=“rdbAddress”>Address</label></td>
<td align=“left” style=“width: 125px” class=“txt2”>
<input id=“rdbPhoneNo” type=“radio” name=“Search” value=“rdbPhoneNo” /><label for=“rdbPhoneNo”>Telephone No.</label></td>
</tr>
<tr class=“txt2”>
<td align=“left” colspan=“2” style=“width: 85px;”>Search Key</td>
<td align=“left” colspan=“3” style=“height: 22px”>
<input name=“txtSearch” type=“text” id=“txtSearch” /></td>
</tr>
<tr class=“txt2”>
<td align=“left” colspan=“2” style=“width: 85px;”>Match</td>
<td align=“left” colspan=“3” style=“height: 26px”>
<select name=“drpMatch” id=“drpMatch” style=“width:126px;”>
<option value=“Exactly”>Exactly</option>
<option value=“Starting With”>Starting With</option>

</select></td>
</tr>
<tr>
<td align=“center” colspan=“5” style=“height: 26px”>
<input type=“submit” name=“Button1” value=“Search” id=“Button1” style=“color:FloralWhite;background-color:#804040;font-weight:bold;” /></td>
</tr>
</table>
<br />

                      &lt;table cellpadding="0" cellspacing="0" border="0" width="100%"&gt;
                   &lt;tr&gt;
                      &lt;td align="center" colspan="5" style="height: 26px"&gt;

                      &lt;span id="lblerror" style="color:Red;font-weight:bold;"&gt;&lt;/span&gt;
                      &lt;/td&gt;
                     &lt;/tr&gt;
                 &lt;/table&gt;

                    &lt;/td&gt;
                &lt;/tr&gt;
               &lt;/table&gt;
           &lt;/tr&gt;
        &lt;/table&gt;

3.areawise.html.erb

<html>
<head>
<title></title>
</head>
<body>
<% for telephonerecords in @telephone_records-%>
Phoneno:<%=telephonerecords.phone_no%> - Name:<%=telephonerecords.name%> -Address: <%=telephonerecords.address%></br>
<%end-%>
</body>
</html>