Sure, I can provide you with a basic implementation of the game you described. Here's an example of a simple text-based version of the game of life simulator using HTML, CSS, and JavaScript:
To try out the game, simply copy and paste the above code into a new HTML file and open it in a web browser. There are two decision cards ("Grow Up" and "Choose a Job") that you can click on. Clicking on "Grow Up" increments the age, and clicking on "Choose a Job" randomizes a job from the list of 90 jobs provided in the `jobs` array. The current age and job are then displayed below the decision cards.
Please note that this is a basic implementation and can be further enhanced with additional features and graphics based on your requirements and preferences.