You don't need auto actions for this (not sure how it'd help anyway?). Create your radio field (lets call it cb_testfield) with the following values.
Value 1: fondomadera
Value 2: fondomarmol
Now use the below CSS to style the values as images.
Code:
form.cb_form .cb_form_line div .cbSnglCtrlLbl input[type="radio"][value="fondomadera"] + label {
background-image: url(http://localhost/lut2.3/images/fondos/fondomadera.jpg);
width: 100px;
height: 100px;
display: inline-block;
font-size: 0;
line-height: 0;
}
form.cb_form .cb_form_line div .cbSnglCtrlLbl input[type="radio"][value="fondomarmol"] + label {
background-image: url(http://localhost/lut2.3/images/fondos/fondomarmol.jpg);
width: 100px;
height: 100px;
display: inline-block;
font-size: 0;
line-height: 0;
}
This will give you image selection in profile edit. You'll need to adjust the width and heights to match the size of your images though. Next you'll need a delimiter field to actually display this on profile. Example of such usage as follows.
[cb:if cb_testfield="fondomadera"]<img src="http://localhost/lut2.3/images/fondos/fondomadera.jpg" />[/cb:if]
[cb:if cb_testfield="fondomarmol"]<img src="http://localhost/lut2.3/images/fondos/fondomarmol.jpg" />[/cb:if]
The above will now display the actual image on profile based off their selection.