/*
* This function process the event of choose a country
*/
function processCountry(value){

    state = document.getElementById('state');
    if (value == 'US')
        state.disabled = false;
    else
        state.disabled = true;
}
