// JavaScript Document
var ajax = new Array();
function getStateList(sel)
{
	var countryCode = sel.options[sel.selectedIndex].value;
	document.getElementById('state').options.length = 0;	// Empty city select box
	if(countryCode.length>0){
		var index = ajax.length;
		ajax[index] = new sack();
		
		ajax[index].requestFile = 'include/getstate.php?countrycode='+countryCode;	// Specifying which file to get
		ajax[index].onCompletion = function(){ createStates(index) };	// Specify function that will be executed after file has been found
		ajax[index].runAJAX();		// Execute AJAX function
	}
}
function createStates(index)
{
	var obj = document.getElementById('state');
	eval(ajax[index].response);	// Executing the response from Ajax as Javascript code	
}


function checkcountry()
{
document.editprofile.action="index.php?view=editprofile&coun="+document.editprofile.country.value;
document.editprofile.method="post";
document.editprofile.submit();
}
