// JavaScript Document
$(document).ready(function() {
   var options1 = { 
        target:        '#output1',   
        beforeSubmit:  showRequest,  
        success:       showResponse
    }; 
    $('#setlocationform').ajaxForm(options1);
});

function showRequest() { 
	if(document.getElementById('Country').value==0){
		document.getElementById('hint').innerHTML='Please select a country';
		return false;
	}
	document.getElementById('output1').innerHTML='';
	document.getElementById('output1').innerHTML='wait..';
} 

function showResponse(responseText, statusText)  { 
	document.getElementById('hint').innerHTML='';
}  










