function select_city(country_id, type)
{
    var params = 'country_id=' + country_id + '&type=' + type;
  
    var ajax = new Ajax.Request('/ajax/location.php', {
                        onSuccess: function(ret)
                        {  
			    //alert(type);
			    if (type!='search')
			    {
			      $('location_state_cont').childElements().each(function(elem) {
				elem.remove();  
			      });
			      $('location_state_cont').insert(ret.responseText);  
			    } else {
			      $('location_state_cont').innerHTML = ret.responseText;
			    }
                            $('location_state_cont').removeClassName('location_unit_hide');
                            $('location_state_cont').addClassName('location_unit_show');
                        },
                        method: 'get',
                        parameters: params
              });  
}
function select_state(id)
{
    alert(id);
}