function submitForm(id)
{
    var form = document.getElementById('aanvraag');
    form.action = form.action+'#'+id;
    form.submit();
    
}
