﻿function otherCity(value, textid)
{
	var obj = $(textid);
	var obj_div = $(textid+'_div');
	if (obj && obj_div)
	{
		if (value==100)
			obj_div.style.display = 'block';
		else
		{
			obj_div.style.display = 'none';
			obj.value = null;
		}
	}
}
function otherFor(checked)
{
	if (checked == true)
		$('forother').style.display = 'block';
	else
		$('forother').style.display = 'none';
}
