$form_admision = $list[0];
// carga de datos de escolaridad
$sch = new Schooling($db);
$list_sch = $sch->getPDFListSchooling($_GET['id']);
$escolaridad = $list_sch[0];
// carga de datos de los padres del estudiante
$aparents = new ApplicationParents($db);
$list_padre = $aparents->getPDFListApplicationParents($_GET['id'], 25);
//PADRE
$list_madre = $aparents->getPDFListApplicationParents($_GET['id'], 26);
//MADRE
$datos_padre = $list_padre[0];
$datos_madre = $list_madre[0];
// carga de datos de los Hermanos
$brothers = new KindBrother($db);
$list_hpm = $brothers->getPDFListKindBrother($_GET['id'], 27);
//HERMANOS DEL POSTULANTE
$list_hp = $brothers->getPDFListKindBrother($_GET['id'], 28);
//HERMANOS POR PARTE DE PADRE
$list_hm = $brothers->getPDFListKindBrother($_GET['id'], 29);
//HERMANOS POR PARTE DE MADRE
$datos_hpm = array();
if (count($list_hpm) > 0) {
    $datos_hpm = $list_hpm;
}
$datos_hp = array();
if (count($list_hp) > 0) {
    $datos_hp = $list_hp;
}
$datos_hm = array();
if (count($list_hm) > 0) {