//$region_oficina    = htmlentities($_POST['region']);
 //$estado_oficina    = htmlentities($_POST['estados_region']);
 $direccion_oficina = htmlentities($_POST['direccion']);
 //$nacionalidad_jefe = htmlentities($_POST['nacionalidad']);
 $cedula_jefe = htmlentities($_POST['id_ciu']);
 $protocolo_jefe = htmlentities($_POST['tratamiento_protocolario']);
 $nombre1_jefe = htmlentities($_POST['prinom']);
 $nombre2_jefe = htmlentities($_POST['segnom']);
 $apellido1_jefe = htmlentities($_POST['priape']);
 $apellido2_jefe = htmlentities($_POST['segape']);
 $numero_resolucion = htmlentities($_POST['resolucion']);
 $fecha_resolucion = htmlentities($_POST['fecha_resolucion']);
 $oficina = new Oficina();
 $jefe = new JefeOficina();
 //Datos de la Oficina
 $oficina->__SET('id_oficina', $siglas_oficina);
 $oficina->__SET('id_jefe', $cedula_jefe);
 //$oficina           ->__SET('id_region' , $region_oficina);
 //$oficina           ->__SET('id_estado' , $estado_oficina);
 $oficina->__SET('siglas', $siglas_oficina);
 $oficina->__SET('nombre', $nombre_oficina);
 $oficina->__SET('direccion', $direccion_oficina);
 //Datos del jefe de Oficina
 //$jefe              ->__SET('nacionalidad'          , $nacionalidad_jefe);
 $jefe->__SET('id_jefe', $cedula_jefe);
 $jefe->__SET('primer_nombre', $nombre1_jefe);
 $jefe->__SET('segundo_nombre', $nombre2_jefe);
 $jefe->__SET('primer_apellido', $apellido1_jefe);
 $jefe->__SET('segundo_apellido', $apellido2_jefe);
 $jefe->__SET('tratamineto_protocolar', $protocolo_jefe);
 $jefe->__SET('numero_resolucion', $numero_resolucion);