"reload" Fields In .tpl File

Hi,



This is orginalcode are from profile_fields.tpl (override template)…


<br />
	    {assign var="_country" value=$value|default:$settings.General.default_country}<br />
	    <select {if $field.autocomplete_type}x-autocompletetype="{$field.autocomplete_type}"{/if} id="{$id_prefix}elm_{$field.field_id}" class="cm-country {if $section == "S"}cm-location-shipping{else}cm-location-billing{/if} {if !$skip_field}{$_class}{else}cm-skip-avail-switch{/if}" name="{$data_name}[{$data_id}]" {if !$skip_field}{$disabled_param}{/if}><br />
		    {hook name="profiles:country_selectbox_items"}<br />
		    <option value="">- {__("select_country")} -</option><br />
		    {foreach from=$countries item="country" key="code"}<br />
		    <option {if $_country == $code}selected="selected"{/if} value="{$code}">{$country}</option><br />
		    {/foreach}<br />
		    {/hook}<br />
	    </select><br />

```<br />
<br />
I would like a "funktion" when user change counrty then I would like to reload, or even redirect "dispatch=checkout.checkout&edit_step=step_two" (I have a special fuctions for one country).<br />
<br />
How can it be done?