﻿function addToList(lst, text, value) {
	lst.append('<option value="' + value + '">' + text + '</option>');
}

function clearList(lst) {
	lst.html('');
}