function onComboxSel(combo) {
	var id = combo.options[combo.options.selectedIndex].value;
	var country = combo.options[combo.options.selectedIndex].text;
	if(country == 'choose the country you wish to call')
		return;
	window.location = "rate.php?id=" + id + "&country=" + country;
}

function onComboxSel2(combo) {
	var id = combo.options[combo.options.selectedIndex].value;
	if(id > 0)
		window.location = "rate.php?id=" + id;
}