function removeOption(selectbox){
	var x=document.getElementById(selectbox);
	x.remove(x.options.length - 1);
	x.remove(x.options.length - 1);
}

removeOption('mailadults');
removeOption('mailchildren');