function changeLocation(baseUrl)
{
	// get selected packet id
	pageUrl = document.getElementById('thelocation').value;
	// create the new url
	var newUrl = baseUrl + pageUrl;
	// refresh the page with the new packet id
	window.location.href = newUrl;
}

function editCard()
{
	// change the check value
	document.getElementById('checkValue').value = 2;
	// submit form
	document.getElementById('ecard').submit();
}
