function country_onChange(obj_select)
{
    var is_us = false;
    if(obj_select.value == 'United States')
    {
        is_us = true;
    }
    show_hide('tr_user_zip', is_us);    
}
