Bueno, eso no es absurdo (lo anterior, lo siento, pero lo era).
Tu problema debería solucionarse usando algo como esto:
Código PHP:
function clearSelection() {
var sel ;
if(document.selection && document.selection.empty){
document.selection.empty() ;
} else if(window.getSelection) {
sel=window.getSelection();
if(sel && sel.removeAllRanges)
sel.removeAllRanges() ;
}
}