function foto(getId){
var id = getId;
	$("#fotofield"+id).append("<p id='row" + id + "'><input type=\"file\" name='foto" + id + "' /> &nbsp; &nbsp; <a href='#' onClick='removeFormField("+id+"); return false;'><strong>Annuleren</strong></a><p>");
	
	$('#foto'+id).hide('slow');
	$('#verwijderfoto'+id).hide('slow');
}

function removeFormField(id) {
	$("#row"+id).remove();
	$('#foto'+id).show('slow');
	$('#verwijderfoto'+id).show('slow');
}

