SSL does two things:
- Encrypts your http session.
- Authenticates the server to the client.
You seem to be focusing on #2. An SSL certificate is a bunch of information about a website (it's domain name, the company that owns it, etc.) that is signed cryptographically using a private key.
This file is stored on the server. When your browser requests a site using the HTTPS protocol, that server sends it's certificate to the browser.
The browser validates that the domain name on the certificate matches the domain name of the site, also makes sure that it's not expired, etc., and validates that the cryptographic signature on the certificate is correct.
Now the problem is that we can tell if the signature is correct, but how do we know WHO signed it? In order to solve this problem, each browser (and some operating systems) automatically trust a number of so-called "root" certificates. There are over a hundred root certificates on most computers. When an administrator generates an SSL certificate, he has his certificate signed by the owner of one of these root certificates. This includes companies like Verisign and Thawte as well as a hundred others around the world (including some government agencies).
The browser validates that the certificate is signed by one of the root certificates that it already trusts. The browser may also check a revocation list to see if a previously valid certificate has been revoked (which may happen if a certificate is issued erroneously to the wrong person). If any of these validation steps fails, the browser will display an error message to the user.