// Добавление нового элемента в массив. Инициализации
function qbadd(count, t_id, t_name, c_id)
{
    town_id[count] = t_id;
    town_name[count] = t_name;
	country_id[count] = c_id;
}    


//для копирования элементов из массива в список выбора
function fillTown(c_id, frm_name) 
{
		if (c_id == -1)
		{
			return false;	
		}
		
		frm = document.getElementById(frm_name);
		
        frm.town_select.length = 1;
        iLCount=1;
    	for (iPop = 0; iPop <= town_id.length; iPop++)
    	{
//alert(sport_tag[iPop]);	
    		if (country_id[iPop] == c_id)
    		{
//alert(iLCount);				
    			dmaf = new Option(town_name[iPop], town_id[iPop]);
    			frm.town_select.options[iLCount] = dmaf;
    			iLCount++;
    		}
    
    	}
}





