JavaScript Eliminar el último elemento hijo
function remove_last_child() {
var select = document.getElementById('parent_element');
select.removeChild(select.lastChild);
}
Novice-Expert