$(document).ready(function(){
	// Insert an extra row after the row that contains the Internet-field and the others
	$('form td.csc-form-fieldcell input').each(function(){
		if($(this).attr('name') == 'Internet') {
			$(this).parent().parent().after('<tr><td colspan="2">&nbsp;</td></tr>');
		}
	});
});
