function change()
{
	var divURL = document.getElementById('xmlURL');
	divURL.innerHTML = "...";
	var xhttp = null;
	if (window.XMLHttpRequest)
	{
		xhttp=new XMLHttpRequest();
	}
	else
	{
		xhttp=new ActiveXObject('Microsoft.XMLHTTP');
	}
	var to = document.getElementById('to');
	var by = document.getElementById('method');
	to = to.options[to.selectedIndex].value;
	by = by.options[by.selectedIndex].text;
	var qurl = '/pos-malaysia-rates-3/'+encodeURI(by)+'-to-'+encodeURI(to)+'.xml';
	divURL.innerHTML = '<a href="' + qurl + '">' + qurl + '</a>';
}

