// JavaScript Document

function submitPhoneType(phoneName)
{
	if(document.getElementById(1211).value=="PayG")
	{
		document.formphtype.action = "phone_dealpayg.asp?Ph=" + phoneName;
		document.formphtype.submit();
	}
	else if(document.getElementById(1211).value=="SimFree")
	{
		document.formphtype.action = "phone_dealsimfree.asp?Ph=" + phoneName ;
		document.formphtype.submit();
	}
}

