document.getElementById('product').onchange = function () {
	if (document.getElementById('product').value.match(/(Personal Translator 14|pt14)/))
		document.getElementById('langpair').selectedIndex = 1;
};
document.getElementById('langpair').onchange = function () {
	if (document.getElementById('product').value.match(/(Personal Translator 14|pt14)/))
		document.getElementById('langpair').selectedIndex = 1;
};
