// on click for form
$('#radio-choice-submit').click(function() {
var choice = $('input[name=radio-choice-0]:checked');
// we don't know the text of the choice, but we knew the
var choiceId = choice.attr('id');
if(choiceId === "radio-choice-0a") {
$('#result-answer').text('Your a man!');
} else if(choiceId === "radio-choice-0b") {
$('#result-answer').text('Your a woman!');
}
// this invokes the jquery page
window.location.href = '#three';
return;
});