def seleccio_valor(it1, it2):
    it3 = filter(lambda t: len(t[0]) > t[1], zip(it1, it2))
    it4 = map(lambda t: t[0][t[1]], it3)
    return it4
