function updateBill(objAmount, coefficient, id)
{
	var board = document.getElementById(id);
	board.value = objAmount.value * coefficient;
}