I made a little plot for the birthday paradox. It looks like this:

This is perfectly fine, but I would like to mark x=23. So my question is:
How do I get the following lime line?

This is the current source:
\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
\setlength\PreviewBorder{2mm}
\usepackage{pgfplots}
\usepackage{tikz}
\usetikzlibrary{arrows,positioning, calc}
\begin{document}
\begin{preview}
\begin{tikzpicture}
\begin{axis}[
width=15cm, height=8cm, % size of the image
grid = major,
grid style={dashed, gray!30},
%xmode=log,log basis x=10,
%ymode=log,log basis y=10,
xmin=0,
xmax=62,
ymin=0,
ymax=1.1,
/pgfplots/xtick={0,5,...,60},
extra y ticks={0.507297},
ylabel=probability of at least one birthday-collision,
xlabel=people,
tick align=outside]
\addplot table [id=exp]{data.csv};
\addplot[domain=0:23, blue, dashed, thick] {0.507297};
%stirling-formulae
\addplot[domain=0:60, red, thick] {1-(365/(365-x))^(365.5-x)*e^(-x)};
\end{axis}
\end{tikzpicture}
\end{preview}
\end{document}
