function getMonth(divID, year_date) {
	var year = $(year_date);
	var year = year.value;
	var url = "functions/getMonths.php";
	var pars = "year=" + year + "&r=" + Math.floor(Math.random()*1000);
	var getMonths = new Ajax.Updater(divID, url, {method: 'get', parameters: pars});
}
function getList() {
	var the_name = escape($F('subscribe'));
	if (the_name.length > 1) {
		var divID = "list";
		var url = "php/getList.php";
		var pars = "search=" + the_name;
		var getMatches = new Ajax.Updater(divID, url, {method: 'get', parameters: pars});
	}
	return false;
}
