Awk would be useful for this:
awk -F, 'NR>1 { print $1 ",(" $5 "," $6 ")"}' your_file.txt
Not sure if you want these to go to another file or location, but this should get you going.