Please help Refresh div using jquery
I want to refresh div using jquery in fallowing smarty template .tpl file PLEASE HELP
Script is:
{include file="header.tpl"}
{include file="sidebar.tpl"}
<div id="items" class="main">
<h2>{$translations.titles.companies}</h2>
<form action="" class="box search" method="get" accept-charset="utf-8">
<fieldset class="content">
<ul>
<li class="semi"><label for="country">{$translations.labels.country}</label>
<select name="country" id="country">
<option value="0">{$translations.labels.any}</option>
{html_options options=$options.countries selected=$params.country}
</select></li>
<li class="semi"><label for="city">{$translations.labels.city}</label>
<input type="text" class="text autocomplete city" name="city" value="{$params.city}" id="location_start" /></li>
<li><label for="keywords">{$translations.labels.keywords}</label>
<input type="text" class="text autocomplete company" size="40" name="keywords" value="{$params.company}" id="keywords" />
</ul>
{include file="search-tabs.tpl"}
</fieldset>
</form>
{include file="user-access.tpl"}
------------------------------------------------------------------------//// I want refresh this portion
{include file="companies-list.tpl"}
----------------------------------------------------------------------//// end
{include file="footer.tpl"}
Thank you for all :)