No, the selection process of transactions to include in a block is not defined in the protocol. The only transaction that miners have to include in a block is the coinbase transaction, i.e the transaction that reward them with new bitcoin(s) if they successfully mine the block. But even if miners don't have to include other transactions in a block, they will because it allow them to collect the transaction fees.
Miners in general choose to include transactions with the higher fees. In the bitcoin core client, the transaction date also plays a role: older transactions are prioritized over newer ones, so that transaction with a lower transaction fees still get a chance to be included in a block, but later.
Edit: as per Pieter Wuille comment, older transactions arent prioritized anymore from v0.15.0
Calling it a genesis transaction is a little confusing, typically it's referred to as the coinbase transaction https://en.bitcoin.it/wiki/Block#Description (unfortunately that has become confusing as well considering the popularity of the company by the same name).
– m1xolyd1an – 2017-10-05T02:36:17.560Good point, I have updated my answer – Julien Klepatch – 2017-10-05T02:37:50.420
The prioritizatization based on coin age in mining was disabled by default in Bitcoin Core 0.13, deprecated in 0.14, and removed in 0.15. It is just sorting based on feerate now. – Pieter Wuille – 2017-10-05T05:38:36.427