function furtherFormOptions(oSelect)
{
	var licencePrice = document.getElementById('licencePrice');


	var data = oSelect.options[oSelect.selectedIndex].value;
	if (data == "6")
	{
		licencePrice.style.display = 'block';
	}
	else
	{
		licencePrice.style.display = 'none';
	}
}