I want to create a barplot with three groups. Compared are two criteria: water consumption and CO2 emission. To make it more comprehensive here the plot I already generated

I approached this problem by using the example from Stacked barplots and text labels in x-coordinate. You can see that the waterconsumption has very small values in comparisson to the ones of the co2-emission. So the Question is:
How can I create a second y-axis for the values of the water consumption?
MWE:
\documentclass{article}
\usepackage{pgfplots,pgfplotstable}
\usetikzlibrary{pgfplots.groupplots}
\pgfplotsset{compat=1.4}
\pgfplotstableread{
Criterion Wasserverbrauch {CO$_2$-Emission}
Komp 8 2349
Komp+PV 8 452
Sorp 14 1006
}\Rapperswil
\pgfplotstableread{
Criterion Wasserverbrauch {CO$_2$-Emission}
Komp 36 10220
Komp+PV 36 5891
Sorp 85 3160
}\Palermo
\pgfplotstableread{
Criterion Wasserverbrauch {CO$_2$-Emission}
Komp 97 25657
Komp+PV 97 18306
Sorp 184 7461
}\Jeddah
\begin{document}
\begin{tikzpicture}
\begin{groupplot}
[group style= {
columns=3,xlabels at=edge bottom,
group name=plots, y descriptions at=edge left,
},
ybar,
ymin=0,
ymax=27e3,
enlarge x limits={abs=.5},
width=0.45\textwidth,
height=0.6\textwidth,
scaled y ticks=base 10:-3,
xticklabels from table={\Rapperswil}{Criterion},
x tick label style={rotate=90,anchor=east},
xtick=data,legend columns=2]
\nextgroupplot[xlabel=Rapperswil,legend to name=grouplegend,ylabel={[kg CO$_2$ per year]}]
\pgfplotstableforeachcolumn\Rapperswil\as\col{%
\ifnum\pgfplotstablecol=0
\else
\edef\tmp{%
\noexpand\addplot table [x expr=\noexpand\coordindex,y=\col] {\noexpand\Rapperswil};
\noexpand\addlegendentry {\col}%
}%
\tmp
\fi
}
\nextgroupplot[xlabel=Palermo]
\pgfplotstableforeachcolumn\Palermo\as\col{%
\ifnum\pgfplotstablecol=0
\else
\edef\tmp{%
\noexpand\addplot table [x expr=\noexpand\coordindex,y=\col] {\noexpand\Palermo};
}%
\tmp
\fi
}
\nextgroupplot[xlabel=Jeddah]
\pgfplotstableforeachcolumn\Jeddah\as\col{%
\ifnum\pgfplotstablecol=0
\else
\edef\tmp{%
\noexpand\addplot table [x expr=\noexpand\coordindex,y=\col] {\noexpand\Jeddah};
}%
\tmp
\fi
}
\end{groupplot}
\node at (plots c2r1.north) [anchor=south, yshift=.6cm] {\ref{grouplegend}};
\end{tikzpicture}
\end{document}


@<name>to notify a user of your comment. – Jake Dec 22 '11 at 7:52